<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.2.1">
</HEAD>
<BODY>
Le jeudi 03 novembre 2011 &#224; 18:26 +0100, Eugen Funk a &#233;crit&nbsp;:
<BLOCKQUOTE TYPE=CITE>
    Dear community,<BR>
    does somebody know about a feature in one of the plugins, where I can send image/video data using the stable rsync protocol to a remote server?<BR>
</BLOCKQUOTE>
Well rsync is made for syncing existing files (or files hierarchy), not streaming. But if you simply want to record and upload your stream at the same time there exist multiple solutions. First I would suggest using sshfs and a normal filesink. Otherwise you could try this too:
<BLOCKQUOTE>
    gst-launch v4l2src ! theoraenc ! oggmux ! fdsink fd=4 4&gt;&amp;1 1&gt;&amp;2 | ssh server.com dd of=test.ogg<BR>
</BLOCKQUOTE>
In a more serious way, you could create an SSH TCP tunnel and combine tcpclientsink and tcpserversrc.<BR>
<BR>
cheers,<BR>
Nicolas
</BODY>
</HTML>