I am capturing an image using gstreamer:
gst-launch-0.10 v4l2src ! ffmpegcolorspace ! pngenc ! filesink location=$date.png
I am then scping 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"