Page 1 of 1

Video Interlacing

Posted: Thu Dec 05, 2019 9:49 am
by Mot3ee
Description of problem or question:

Hi
How can I do Progressive to Interlace conversion?

I searched on Youtube and in the forum, I only found I to P conversion

So, anyone know how it's done?

Thanks


Steps to reproduce the problem (If Applicable):




HandBrake version (e.g., 1.0.0):




Operating system and version (e.g., Ubuntu 16.04 LTS, macOS 10.13 High Sierra, Windows 10 Creators Update):

Window 10


HandBrake Activity Log ***required*** (see How-to get an activity log)

Code: Select all

Please replace this text with the contents of your log file between the two code tags - OR -  provide a pastebin URL in place of these 3 lines.

Re: Video Interlacing

Posted: Thu Dec 05, 2019 4:48 pm
by JohnAStebbins
HandBrake can't do this.

Re: Video Interlacing

Posted: Thu Dec 05, 2019 9:43 pm
by Deleted User 13735
I have written a Vegas 14 project that will do this.

Re: Video Interlacing

Posted: Sun Dec 08, 2019 7:23 am
by Mot3ee
musicvid wrote: Thu Dec 05, 2019 9:43 pm I have written a Vegas 14 project that will do this.
Can you tell me how?

Re: Video Interlacing

Posted: Sun Dec 08, 2019 7:26 am
by Mot3ee
actually I'm working on Linux to apply this conversion while streaming the video

I'm truing to avoid using external IC to this process

Re: Video Interlacing

Posted: Mon Dec 09, 2019 4:03 am
by Deleted User 13735
I can send you a zipped .veg if you have Vegas Pro 14+.
You cannot stream interlaced video by any normal means. Hardware only afaik.

Re: Video Interlacing

Posted: Mon Dec 09, 2019 12:32 pm
by Mot3ee
Ok that would be great.

Re: Video Interlacing

Posted: Tue Dec 10, 2019 12:08 am
by Deleted User 13735
It is for 1080p 29.970 source, rendering to 1080i, Top field first. You would have to modify for other uses. AlI assets are included for a working demo, including a sample output file. Can do it this week, time permitting. You may PM me your email address.
It's only a proof-of-concept, so I can provide only minimal support.

Re: Video Interlacing

Posted: Thu Jan 30, 2020 9:46 pm
by cobb
ffmpeg can do this with the tinterlace filter, i.e. (this will double your frame rate):

Code: Select all

ffmpeg -i input.mov -vf tinterlace=interlacex2 -x264opts interlaced=1 output.mp4

https://www.ffmpeg.org/ffmpeg-filters.h ... tinterlace