when i use ffprobe it doesnt tell me if a video is interlaced or not ?? is there any command i can use that will me show me ??
thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
It' s not possible with ffprobe or ffmpeg to accurately determine if the actual content is interlaced, it's something that has to be done with your eyes
There is difference between content and type of encoding. For example, you can have progressive content that is encoded interlaced. Or interlaced content encoded progressive. There are many different variations of pulldown -
you can have such info but video can be progressive and marked as interlace or opposite way, to detect if video is interlace or not probably you need use not only probe but also filters - quality of detection can be vary.
Filter https://ffmpeg.org/ffmpeg-filters.html#idet
Code:@ffprobe -select_streams v -i %1 -show_entries "frame=pkt_pts_time,pkt_duration_time,interlaced_frame" -pretty -print_format json -of json > %1.json
Code:@ffmpeg -report -i %1 -vf idet -f null -
Last edited by pandy; 30th Jun 2015 at 04:36.
Similar Threads
-
Interlaced Video for Progressive Blu-Ray
By dereksimonetti in forum Authoring (Blu-ray)Replies: 6Last Post: 2nd May 2015, 22:35 -
Determining if video is progressive or interlaced
By SameSelf in forum Video ConversionReplies: 10Last Post: 9th Mar 2015, 04:13 -
Interlaced scanning, progressive video?
By hello_hello in forum Video ConversionReplies: 23Last Post: 4th Nov 2014, 18:38 -
Are my video clips interlaced or progressive? Can somebody advise?
By DJBoshh in forum Newbie / General discussionsReplies: 49Last Post: 10th Jan 2014, 12:14 -
interlaced and progressive in same video. how to make only progressive.
By OmniShadow in forum Newbie / General discussionsReplies: 32Last Post: 19th Sep 2012, 00:44