Comment 9 for bug 257818

Revision history for this message
nullack (nullack) wrote :

I'd like to share my progress with this. Since upstream seem to be somewhat uncooperative on implementing deinterlacing in Totem Ive been doing tests with gstreamer. I'm pleased to report that deinterlacing functionality is working well. Here's a command line for bottom field first interlaced content:

gst-launch filesrc location=/mnt/vault/Film/Tests/aspbff.avi ! decodebin2 ! ffmpegcolorspace ! deinterlace2 tff=2 ! xvimagesink

And for top field first content:

gst-launch filesrc location=/mnt/vault/Film/Tests/asptff.avi ! decodebin2 ! ffmpegcolorspace ! deinterlace2 ! xvimagesink

Note that currently gstreamer cannot auto detect if the content is TFF or BFF and TFF is assumed. All BFF content has to be hard coded to display correctly.