You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this and #65 could be implemented in the near future using the getUserMedia() function of WebRTC. It is platform-independent and will be supported by all major browsers.
However, this might be blocked by #40 for now, as it seems to be only allowed through ssl (at least for Chrome).
Okay, lets say you want to share your current screen content with friends quickly, but a video style view
is not what you are going for?
Perhaps upload a quick screencap?
This shell script serves as an example (serverside modifications required) => http post handling!
Dependencies
http://packages.debian.org/squeeze/scrot
http://software.opensuse.org/package/scrot
-Curl
http://packages.debian.org/squeeze/curl
http://software.opensuse.org/package/curl
Shell script example
!/usr/bin/bash
Post current screen script for the loungeinvader!
Depends on Scrot and Curl!
Temporary File Locations
LoungeTmpDir="/tmp/
tr -dc "[:alpha:]" < /dev/urandom | head -c 7
/"LoungeTmpImg=$LoungeTmpDir"upimg.png"
Time Before taking the Screenshot
LoungeScrDelay="2"
Do the **** Thing
mkdir -p $LoungeTmpDir
scrot -d $LoungeScrDelay -m $LoungeTmpImg
crap
curl -X POST http://10.20.30.51/ -d $LoungeTmpImg --header "Content-Type:image/png" > /dev/null 2>&1
curl -i -F Datei=@$LoungeTmpImg -X POST http://10.20.30.51/cgi-bin/show> /dev/null 2>&1
rm -r $LoungeTmpDir
The text was updated successfully, but these errors were encountered: