hello guys,
For proper editing in my video studio (DaVinci Resolve). I need to Inverse Telecine the video.
(sample: https://workupload.com/file/mjMXcMpuEPs)
As far as I read through several documentations the proper way of doing it is supposed to be
If I leave out the bitrate commands the video comes off very small with a bitrate unter 1000."%FFMPEG%" -i %INPUTFILE% -vf "fieldmatch,yadif=deint=interlaced,decimate, fps=24000/1001" -b:v 30M -maxrate 30M -bufsize 30M "%TARGETFILE%".mov
Usually for simple copying the video without any conversion commands ( -c:v copy ) ffmpeg choses a fitting bitrate but in this case it didn't so I just chose big parameters to minimize the quality loss.
If I leave out the " fps=24000/1001" at the end the video comes out with a weird 47,xx fps.
So all in all although in the right fps and good bitrate the video still plays ways too fast so what am I doing wrong here ? There don't seem to be many other ways for a proper IVTC in ffmpeg.
Any help is much appreciated.
thanks a lot
regards
+ Reply to Thread
Results 1 to 4 of 4
-
-
I was able to duplicate the problem with your source video. MPEG2 video in MKV is often problematic so I remuxed the source to an mpg file then ran the IVTC on the new file. It worked properly.
Remux batch:
Code:ffmpeg -i %1 -vcodec copy -acodec copy "%~dpn1.mpg"
-
ffmpeg reads the frame rate as the field rate (59.94)
Code:Stream #0:0: Video: mpeg2video (Main), yuv420p(tv, smpte170m, top first), 720x480 [SAR 8:9 DAR 4:3], Closed Captions, 59.94 fps, 59.94 tbr, 1k tbn, 59.94 tbc
Code:-vf "fps=30000/1001, fieldmatch,yadif=deint=interlaced,decimate"
Similar Threads
-
FFMPEG: How to convert multiple DNG to MP4 very fast...
By clkdiv in forum Video ConversionReplies: 0Last Post: 8th Nov 2020, 11:26 -
can't figure out original frame rate from NTSC laserdisc capture
By clashradio in forum Capturing and VCRReplies: 12Last Post: 6th Dec 2018, 16:55 -
How to remove blended frames from NTSC 29.976?
By midts in forum Video ConversionReplies: 2Last Post: 15th Aug 2018, 12:07 -
Laserdisc BEST source (PAL vs NTSC)
By darkbluesky in forum Capturing and VCRReplies: 35Last Post: 8th Jan 2017, 21:28 -
[FFMpeg] MP4 Fast Resize
By Marmz in forum Video ConversionReplies: 0Last Post: 18th Jun 2016, 15:17