Hi. I am converting a lot of video tapes with Canopus. For each output file I would like to generate the video mosaic file that shows some pictures from the fideo. That file should be a jpeg and its content is a mosaic of the pictures from the videos, to help us and recognize the content of the scenes. I suppouse it is made from video capturing an image every some seconds. Usually this file is collected to the video when it is downloaded from internet.
Is there someone that knows hot to build it? And the software that I can use? Many thanks and sorry for my bad English.
+ Reply to Thread
Results 1 to 10 of 10
-
-
mpc-hc video player can generate a .jpg sheet of thumbnails (File > Thumbnails...) from the played video.
-
Hello. I solved by myself. Every good video player has the saving images from file function. The best I use is VLC but ffmpeg also is used expecially for conversions using CUDA engines. ffmpeg has the export images too. But it is not the searched function that is: create a thumbs sheet. So there is an ImageMagic function that is montage. The tutorial how the utility works is: HERE. And the Montage use fot that is: HERE. Thanks for the help.
-
Many tools can be used to generate thumbnail sheets.
- Some tools allow customization of the sheet layout and of the text overlay
- Typically the thumbnails are generated at a fixed time-interval (based on the desired sheet layout ex: 5x8 thumbnails and the video duration), but it would also be possible to use chapters or scene-change detection. -
This isn't a new problem: I would suggest you search for existing scripts (and modify them to your requirements if needed).
ffmpeg + imagemagick are good tools, but not that easy to use. -
Hello I was working into this project. Thanks for the ffmpeg command!!
Problem: a lot of files during tape conversion to digital; watching all content to understand what I am process on.
Solution: create a thumb file that shows me the content of the video result after the video capture processes.
Create the thumbs of the video with ffmpeg via command line.
Below the command I used to create a thumb after two minutes starting after two minuter from the beginning:
Code:$ ffmpeg -i input.avi -ss 00:02:20.435 -vf fps=1/120 -qscale:v 2 ./thumbs/output_%03d.jpg
Code:$ montage *.jpg -mode Concatenate -tile 4x montage_array.jpg
Similar Threads
-
Remux matching .srt file into video file Try DVDFab Video Downloader and ri
By agon024 in forum Video ConversionReplies: 5Last Post: 26th Mar 2021, 02:57 -
How to split a .TS video file based on time (not file size!) ?
By Michael REMY in forum EditingReplies: 4Last Post: 19th Sep 2020, 18:32 -
Editing a 100MB video file turns into 1.5GB file!! How to control size?
By GoodEnough in forum Newbie / General discussionsReplies: 3Last Post: 2nd Apr 2020, 22:27 -
How do I combine a MPV video file and WAV audio file into an AVI?
By robertazimmerman in forum Newbie / General discussionsReplies: 17Last Post: 6th Mar 2019, 10:47 -
Video Edit - Cutting a section of video from a larger video file
By bpatters69 in forum EditingReplies: 14Last Post: 10th Nov 2017, 10:33