[xiph-commits] r17643 - in trunk/ffmpeg2theora: . src

j at svn.xiph.org j at svn.xiph.org
Wed Nov 24 10:09:52 PST 2010


Author: j
Date: 2010-11-24 10:09:51 -0800 (Wed, 24 Nov 2010)
New Revision: 17643

Modified:
   trunk/ffmpeg2theora/ffmpeg2theora.1
   trunk/ffmpeg2theora/src/ffmpeg2theora.c
Log:
oggfwd can not deal with skeleton track

Modified: trunk/ffmpeg2theora/ffmpeg2theora.1
===================================================================
--- trunk/ffmpeg2theora/ffmpeg2theora.1	2010-11-24 13:51:38 UTC (rev 17642)
+++ trunk/ffmpeg2theora/ffmpeg2theora.1	2010-11-24 18:09:51 UTC (rev 17643)
@@ -309,8 +309,10 @@
   ffmpeg2theora frame%06d.png -o output.ogv
 
 Live streaming from V4L Device:
-  ffmpeg2theora /dev/video0 \-f video4linux \-\-inputfps 15 \-x 160 \-y 128 \\
-                 \-o \- | oggfwd icast2server 8000 password /theora.ogv
+  ffmpeg2theora \-\-no\-skeleton /dev/video0 \-f video4linux \\
+                \-\-inputfps 15 \-x 160 \-y 128 \\
+                \-o \- | oggfwd icast2server 8000 password /theora.ogv
+
   (you might have to use video4linux2 depending on your hardware)
   
 Live encoding from a DV camcorder (needs a fast machine):
@@ -318,8 +320,8 @@
 
 Live encoding and streaming to icecast server:
   dvgrab \-\-format raw \- \\
-    | ffmpeg2theora \-f dv \-x 160 \-y 128 \-o /dev/stdout \- \\
-    | oggfwd icast2server 8000 password /theora.ogv
+  | ffmpeg2theora \-\-no\-skeleton \-f dv \-x 160 \-y 128 \-o /dev/stdout \- \\
+  | oggfwd icast2server 8000 password /theora.ogv
 
 
 .SH AUTHOR

Modified: trunk/ffmpeg2theora/src/ffmpeg2theora.c
===================================================================
--- trunk/ffmpeg2theora/src/ffmpeg2theora.c	2010-11-24 13:51:38 UTC (rev 17642)
+++ trunk/ffmpeg2theora/src/ffmpeg2theora.c	2010-11-24 18:09:51 UTC (rev 17643)
@@ -2132,17 +2132,19 @@
         "    ffmpeg2theora frame%%06d.png -o output.ogv\n"
         "\n"
         "  Live streaming from V4L Device:\n"
-        "    ffmpeg2theora /dev/video0 -f video4linux --inputfps 15 -x 160 -y 128 -o - \\\n"
-        "     | oggfwd icast2server 8000 password /theora.ogv\n"
+        "    ffmpeg2theora --no-skeleton /dev/video0 -f video4linux \\\n"
+        "                  --inputfps 15 -x 160 -y 128 -o - \\\n"
+        "                  | oggfwd icast2server 8000 password /theora.ogv\n"
+        "\n"
         "     (you might have to use video4linux2 depending on your hardware)\n"
         "\n"
         "  Live encoding from a DV camcorder (needs a fast machine):\n"
         "    dvgrab - | ffmpeg2theora -f dv -x 352 -y 288 -o output.ogv -\n"
         "\n"
         "  Live encoding and streaming to icecast server:\n"
-        "    dvgrab --format raw - \\\n"
-        "     | ffmpeg2theora -f dv -x 160 -y 128 -o /dev/stdout - \\\n"
-        "     | oggfwd icast2server 8000 password /theora.ogv\n"
+        "   dvgrab --format raw - \\\n"
+        "    | ffmpeg2theora --no-skeleton -f dv -x 160 -y 128 -o /dev/stdout - \\\n"
+        "    | oggfwd icast2server 8000 password /theora.ogv\n"
         "\n"
         ,max_speed_level);
     exit(0);



More information about the commits mailing list