Mercurial > mplayer.hg
comparison DOCS/man/en/mplayer.1 @ 12081:e34700c872ac
vf_phase filter by Ville Saari (114263 at foo dot bar dot org)
author | rfelker |
---|---|
date | Mon, 29 Mar 2004 04:39:04 +0000 |
parents | 656a1b45b309 |
children | 441803819454 |
comparison
equal
deleted
inserted
replaced
12080:1abbfe730adc | 12081:e34700c872ac |
---|---|
3134 If you want to use the ivtc or detc filter on movies that are partly soft | 3134 If you want to use the ivtc or detc filter on movies that are partly soft |
3135 telecined, inserting this filter before them should make them more reliable. | 3135 telecined, inserting this filter before them should make them more reliable. |
3136 Currently only libmpeg2 exports the needed flags. | 3136 Currently only libmpeg2 exports the needed flags. |
3137 If used on material that does not set them, the filter does nothing. | 3137 If used on material that does not set them, the filter does nothing. |
3138 .TP | 3138 .TP |
3139 .B phase=[t|b|p|a|u|T|B|A|U][:v] | |
3140 Delay interlaced video by one field time so that the field order | |
3141 changes. | |
3142 The intended use is to fix PAL movies that have been captured with the | |
3143 opposite field order to the film-to-video transfer. | |
3144 The options are: | |
3145 .RSs | |
3146 .IPs t | |
3147 Capture field order top-first, transfer bottom-first. | |
3148 Filter will delay the bottom field. | |
3149 .IPs b | |
3150 Capture bottom-first, transfer top-first. | |
3151 Filter will delay the top field. | |
3152 .IPs p | |
3153 Capture and transfer with the same field order. | |
3154 This mode only exists for the documentation of the other options to refer to, | |
3155 but if you actually select it, the filter will faithfully do nothing ;-) | |
3156 .IPs a | |
3157 Capture field order determined automatically by field flags, transfer opposite. | |
3158 Filter selects among t and b modes on a frame by frame basis using field flags. | |
3159 If no field information is available, then this works just like u. | |
3160 .IPs u | |
3161 Capture unknown or varying, transfer opposite. | |
3162 Filter selects among t and b on a frame by frame basis by analyzing the | |
3163 images and selecting the alternative that produces best match between the | |
3164 fields. | |
3165 .IPs T | |
3166 Capture top-first, transfer unknown or varying. | |
3167 Filter selects among t and p using image analysis. | |
3168 .IPs B | |
3169 Capture bottom-first, transfer unknown or varying. | |
3170 Filter selects among b and p using image analysis. | |
3171 .IPs A | |
3172 Capture determined by field flags, transfer unknown or varying. | |
3173 Filter selects among t, b and p using field flags and image analysis. | |
3174 If no field information is available, then this works just like U. | |
3175 This is the default mode. | |
3176 .IPs U | |
3177 Both capture and transfer unknown or varying. | |
3178 Filter selects among t, b and p using image analysis only. | |
3179 .IPs v | |
3180 Verbose operation. | |
3181 Prints the selected mode for each frame and the average squared difference | |
3182 between fields for t, b, and p alternatives. | |
3183 .RE | |
3184 .TP | |
3139 .B telecine[=start] | 3185 .B telecine[=start] |
3140 Apply 3:2 'telecine' process to increase framerate by 20%. | 3186 Apply 3:2 'telecine' process to increase framerate by 20%. |
3141 This most likely will not work correctly with MPlayer, but it can | 3187 This most likely will not work correctly with MPlayer, but it can |
3142 be used with 'mencoder \-fps 29.97 \-ofps 29.97 \-vf telecine'. | 3188 be used with 'mencoder \-fps 29.97 \-ofps 29.97 \-vf telecine'. |
3143 Both fps options are essential! | 3189 Both fps options are essential! |