-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pullup: Cannot find a way to say “bottom field first” #2289
Comments
use setfield filter before pullup |
Thanks! For future reference, I got good results (similar to the ffmpeg output) with
Perhaps mpv could provide a higher-level setting that is documented in the man page. But if you deem this use case too obscure, feel free to just close the request. |
so |
oh, duh, yeah, that's what you said. yeah, this should work, looking into it now. |
Well the only place that It looks like some of the supposedly progressive frames in the 2-3 pattern are actually interlaced. So even if pullup could perfectly figure what to make of it, you'd still get interlaced frames. You're probably better off just using yadif on it. |
With ffmpeg, The adaptive filters ( Both (Is |
It looks like one of the problems with that clip is that all the frames are flagged progressive, so the field dominance is actually being ignored in
The reason that That said, I still find that yadif is at least required at the end to make that clip watchable |
I wonder about that. Just using |
I was unable to find a way to play frames_of_reference.mpeg in mpv without telecine artifacts.
--field-dominance
does not seem to affectpullup
. None of the parameters topullup
seem to help either.autodeint.lua
was also unable to come up with a working filter.I was able to get the video corrected to various extents with ffmpeg:
detelecine=first_field=b:start_frame=1
would remove all artifacts until going out of sync towards the end of the video.fieldmatch=order=bff,decimate
would remove most artifacts throughout the video, leaving an interlaced frame here and there.fieldmatch=order=bff:combmatch=full,yadif=deint=interlaced,decimate
would fix many of those frames but not all.I suppose mpv
pullup
with a field dominance override would be more or less equivalent to the second filter? I would be happy with that.I’m running mpv git-eabc530.
The text was updated successfully, but these errors were encountered: