comparison DOCS/en/documentation.html @ 9644:0fe056bdb135

vop -> vf change, small fixes. The Polish documentation should be checked for correctness.
author jonas
date Sat, 22 Mar 2003 12:02:27 +0000
parents 0c3f11f96c74
children 198a1413f0ad
comparison
equal deleted inserted replaced
9643:f1b66e97c3d3 9644:0fe056bdb135
712 </UL> 712 </UL>
713 713
714 <H4>Non-YUV cards</H4> 714 <H4>Non-YUV cards</H4>
715 715
716 <P>Fullscreen playing can be achieved by either enabling <B>software scaling</B> 716 <P>Fullscreen playing can be achieved by either enabling <B>software scaling</B>
717 (use the <CODE>-zoom</CODE> or <CODE>-vop scale</CODE> 717 (use the <CODE>-zoom</CODE> or <CODE>-vf scale</CODE>
718 option, but I warn you: this is slow), or switching to a small resolution 718 option, but I warn you: this is slow), or switching to a small resolution
719 video mode, for example 352x288. If you don't have YUV acceleration, the 719 video mode, for example 352x288. If you don't have YUV acceleration, the
720 latter method is recommended. Video mode switching can be enabled by 720 latter method is recommended. Video mode switching can be enabled by
721 using the <CODE>-vm</CODE> option and it works with the following drivers:</P> 721 using the <CODE>-vm</CODE> option and it works with the following drivers:</P>
722 722
1159 the full resolution (i.e. 288 for PAL or 240 for NTSC), make sure you 1159 the full resolution (i.e. 288 for PAL or 240 for NTSC), make sure you
1160 turned deinterlacing on. Otherwise you'll get a movie which is distorted 1160 turned deinterlacing on. Otherwise you'll get a movie which is distorted
1161 during fast-motion scenes and the bitrate controller will be probably even 1161 during fast-motion scenes and the bitrate controller will be probably even
1162 unable to retain the specified bitrate as the interlacing artifacts produce 1162 unable to retain the specified bitrate as the interlacing artifacts produce
1163 high amount of detail and thus consume lot of bandwidth. You can enable 1163 high amount of detail and thus consume lot of bandwidth. You can enable
1164 deinterlacing with <CODE>-vop pp=DEINT_TYPE</CODE>. Usually 1164 deinterlacing with <CODE>-vf pp=DEINT_TYPE</CODE>. Usually
1165 <CODE>pp=lb</CODE> does a good job, but it can be matter of personal 1165 <CODE>pp=lb</CODE> does a good job, but it can be matter of personal
1166 preference. See other deinterlacing algorithms in the manual and give it a 1166 preference. See other deinterlacing algorithms in the manual and give it a
1167 try.</LI> 1167 try.</LI>
1168 <LI>Crop out the dead space. When you capture the video, the areas at the 1168 <LI>Crop out the dead space. When you capture the video, the areas at the
1169 edges are usually black or contain some noise. These again consume lots of 1169 edges are usually black or contain some noise. These again consume lots of
1225 bitrate of 64kbps, using LAME codec. This setup is suitable for 1225 bitrate of 64kbps, using LAME codec. This setup is suitable for
1226 capturing movies.<BR> <CODE> &nbsp;&nbsp;&nbsp;&nbsp;mencoder -tv 1226 capturing movies.<BR> <CODE> &nbsp;&nbsp;&nbsp;&nbsp;mencoder -tv
1227 on:driver=v4l:width=768:height=576 \<BR> 1227 on:driver=v4l:width=768:height=576 \<BR>
1228 &nbsp;&nbsp;&nbsp;&nbsp;-ovc lavc -lavcopts 1228 &nbsp;&nbsp;&nbsp;&nbsp;-ovc lavc -lavcopts
1229 vcodec=mpeg4:vbitrate=900 \<BR> &nbsp;&nbsp;&nbsp;&nbsp;-oac 1229 vcodec=mpeg4:vbitrate=900 \<BR> &nbsp;&nbsp;&nbsp;&nbsp;-oac
1230 mp3lame -lameopts cbr:br=64 \<BR> &nbsp;&nbsp;&nbsp;&nbsp;-vop 1230 mp3lame -lameopts cbr:br=64 \<BR> &nbsp;&nbsp;&nbsp;&nbsp;-vf
1231 pp=lb,crop=720:544:24:16 -o output.avi </CODE><BR> 1231 crop=720:544:24:16,pp=lb -o output.avi </CODE><BR>
1232 1232
1233 <BR> 1233 <BR>
1234 This will additionally rescale the image to 384x288 and compresses 1234 This will additionally rescale the image to 384x288 and compresses
1235 the video with the bitrate of 350kbps in high quality mode. The 1235 the video with the bitrate of 350kbps in high quality mode. The
1236 vqmax option looses the quantizer and allows the video compressor to 1236 vqmax option looses the quantizer and allows the video compressor to
1239 video quality isn't so important.<BR> 1239 video quality isn't so important.<BR>
1240 <CODE> 1240 <CODE>
1241 &nbsp;&nbsp;&nbsp;&nbsp;mencoder -tv on:driver=v4l:width=768:height=576 \<BR> 1241 &nbsp;&nbsp;&nbsp;&nbsp;mencoder -tv on:driver=v4l:width=768:height=576 \<BR>
1242 &nbsp;&nbsp;&nbsp;&nbsp;-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=350:vhq:vqmax=31:keyint=300 \<BR> 1242 &nbsp;&nbsp;&nbsp;&nbsp;-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=350:vhq:vqmax=31:keyint=300 \<BR>
1243 &nbsp;&nbsp;&nbsp;&nbsp;-oac mp3lame -lameopts cbr:br=48 \<BR> 1243 &nbsp;&nbsp;&nbsp;&nbsp;-oac mp3lame -lameopts cbr:br=48 \<BR>
1244 &nbsp;&nbsp;&nbsp;&nbsp;-vop scale=384:288,pp=tn/lb,crop=720:540:24:18 -sws 1 -o output.avi 1244 &nbsp;&nbsp;&nbsp;&nbsp;-vf crop=720:540:24:18,pp=tn/lb,scale=384:288 -sws 1 -o output.avi
1245 </CODE><BR> 1245 </CODE><BR>
1246 1246
1247 It's also possible to specify smaller image dimensions in the 1247 It's also possible to specify smaller image dimensions in the
1248 <CODE>-tv</CODE> option and omit the software scaling but this 1248 <CODE>-tv</CODE> option and omit the software scaling but this
1249 approach uses the maximum available information and is a little more 1249 approach uses the maximum available information and is a little more