0
I am capturing an image using gstreamer
:
gst-launch-0.10 v4l2src ! ffmpegcolorspace ! pngenc ! filesink location=$date.png
I am then scp
ing the file to a remote server:
scp $date.png remote:pics
What I would like to do is skip the file on the local filesystem step. Can I do something like
gst-launch-0.10 v4l2src ! ffmpegcolorspace ! pngenc | ssh remote "cat > pics/$date.png"
The trick is getting the file contents to come out on
stdout
(thay is what I don't know, this is more of a gstreamer question than a how doesssh
work question). Thesshfs
idea has merit though, that should be easy enough to setup – Chas. Owens – 2010-09-24T17:41:06.203