Is there such a thing? I want to point it at a folder of jpg's assign a frame rate and say "go" and have it make an mjpeg without transcoding or anything just fast make me a file I don't care how big it is (same size as the origin jpg's of course)
Especially important is that it handle 8mp and higher file sizes (so I can make 4k timelapse movies)
suggestions?
basically I use cell phones with extended batteries and external usb batteries so they can run 8+ hours. I use lapse it pro and click go and walk away. I scatter them around to record different views and angles all day.
problem is processing the resulting data. what a PITA. I have yet to find any good software for doing this and NONE that can handle 4k resolutions.
+ Reply to Thread
Results 1 to 5 of 5
-
-
FFmpeg (Command Line) seems to handle 8 Mega Pixel (3264x2448) okay but if you are converting a JPG to an Mjpeg so I'm not sure you can do it without recoding it. You want a movie basically from the images correct?
EDIT:
Just a thought but if you intend to put 8 hours worth of 8mp images into a video with say 25 fps then the resulting video in Hevc, 4K, x265 is going to be HUGE and encodes slowly also...
Data: Stream #0:0 -> #0:0 (mjpeg (native) -> hevc (libx265))
Data: Press [q] to stop, [?] for help
Data: frame= 241 fps= 12 q=-0.0 size= 584kB time=00:00:07.00 bitrate= 683.7kbits/s dup=238 drop=0 speed=0.351x
Data: frame= 241 fps=5.8 q=-0.0 size= 584kB time=00:00:07.00 bitrate= 683.7kbits/s dup=238 drop=0 speed=0.168x
Data: frame= 359 fps=5.1 q=-0.0 Lsize= 1197kB time=00:00:11.90 bitrate= 823.9kbits/s dup=356 drop=0 speed=0.168x
Data: video:1191kB audio:0kB subtitle:0kB other streams:0kB global headers:1kB muxing overhead: 0.458128%
Data: x265 [info]: frame I: 2, Avg QP:24.24 kb/s: 126037.56
Data: x265 [info]: frame P: 71, Avg QP:33.87 kb/s: 187.60
Data: x265 [info]: frame B: 286, Avg QP:35.72 kb/s: 94.59
Data: x265 [info]: Weighted P-Frames: Y:0.0% UV:0.0%
Data: x265 [info]: consecutive B-frames: 1.4% 0.0% 1.4% 0.0% 97.3%
Data:
Data: encoded 359 frames in 70.75s (5.07 fps), 814.62 kb/s, Avg QP:35.29Last edited by Budman1; 10th Feb 2016 at 01:59. Reason: Additional testing info
-
Simple solution to concatenate JPEGs to an MJPG AVI: http://makeavi.sourceforge.net/ (unfortunately I am not sure if it would recode frames or just copy, that's not so clearly documented).
Apart from that, it should be possible to have ffmpeg copy a sequence of JPEG images into MJPG using an sprintf filename pattern for the input, and "-codec copy" to avoid recoding. See: question on stackexchange (syntax might be outdated, not sure).Last edited by LigH.de; 10th Feb 2016 at 02:36.
-
I'm the developer behind FFQueue. My posts might reflect this! ;-)
-
Jpg vs. Mjpg,
There's a very good chance that the color spaces won't match up (mjpeg should expect 601, 709), so then you have to live with wrong colors or do the colorspace conversion (thus requiring re-encoding).
Scott
Similar Threads
-
Join Motion JPG (mjpeg/mjpg) without re-encoding
By giroro in forum EditingReplies: 13Last Post: 23rd Sep 2013, 09:25 -
[SOLVED] Simple tool to compress video further?
By yetanotherlogin in forum Video ConversionReplies: 16Last Post: 18th Nov 2012, 16:18 -
Free simple tool to export sections of videos?
By Maoukiji in forum Newbie / General discussionsReplies: 6Last Post: 19th Mar 2012, 12:59 -
Make a DVD that plays my *. JPG photos
By bryankendall in forum Newbie / General discussionsReplies: 2Last Post: 4th Jan 2012, 13:37 -
Question - how to make ffmpeg use mjpeg codecs when it encounters 4CC code
By bf4648 in forum Video ConversionReplies: 0Last Post: 12th Oct 2011, 16:53