I'd like to use an image-editor to batch process all frames in a 3-minute MTS video.
I used KMplayer to extract the frames, which produced about 1000 frame images in BMP format.
Following advice obtained from my first post here:
https://forum.videohelp.com/threads/402220-Getting-an-accurate-frame-count-for-whole-v...eo#post2624011
ffprobe and avisynth were used to count frames in the video. Each counted about 5000 frames.
Can anyone explain why KMplayer only captures 20% of the frames?
Is there a way to extract all 5000 frames using something other than KMplayer?
+ Reply to Thread
Results 1 to 5 of 5
-
-
If the MTS is "HD", you probably want to use bt709 for the RGB conversion for the images. By default ffmpeg uses bt601 (the matrix used for SD by convention), and the colors will be slightly shifted
Code:ffmpeg -i input.mts -vf scale=in_color_matrix=bt709,format=rgb24 output%05d.png
Similar Threads
-
output location of frames similar to image to Text
By Budman1 in forum EditingReplies: 2Last Post: 29th Jun 2019, 22:53 -
image files Image Files IMG FILES
By Marsia Mariner in forum TestReplies: 9Last Post: 12th May 2019, 21:57 -
How to Extract an ISO Image without burning to dvd?
By skorpinok in forum ComputerReplies: 8Last Post: 26th Sep 2018, 02:07 -
Extract all frames from video files
By nic3 in forum EditingReplies: 6Last Post: 25th Dec 2016, 15:21 -
Converting BDMV files into uncompressed MKVs
By 0b10001000111 in forum Blu-ray RippingReplies: 5Last Post: 27th Oct 2016, 19:15