Penguin

Differences between version 16 and previous revision of FFmpeg.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 16 Last edited on Monday, June 15, 2009 8:25:29 pm by LawrenceDoliveiro Revert
Older page: version 15 Last edited on Monday, June 15, 2009 8:19:31 pm by LawrenceDoliveiro Revert
@@ -65,9 +65,9 @@
 This takes a single still frame (probably best to stick to [JPEG] format, certainly [PNG] didn't work) and turns it into an [MPEG]-2 output movie with a silent soundtrack. The movie is of one-second duration, which is sufficient because it can be set to loop during the DVD authoring process: 
  
 <pre> 
  ffmpeg -loop_input -t 1.0 -i ''stillframename'' \ 
- -ar 48000 -f s16le -i <(dd if=/dev/zero bs=192000 count=1) \ 
+ -ar 48000 -f s16le -i <(dd if=/dev/zero bs=96000 count=1) \ 
  -target pal-dvd ''outputmoviename'' 
 </pre> 
  
 where <tt>pal-dvd</tt> can be replaced with <tt>ntsc-dvd</tt> if authoring an NTSC disc rather than PAL.