paulpacifico / shutter-encoder

A professional video compression tool accessible to all, mostly based on FFmpeg.
https://www.shutterencoder.com
GNU General Public License v3.0
958 stars 59 forks source link

Quick Question #191

Open Peter-Soeiro opened 4 months ago

Peter-Soeiro commented 4 months ago

Before using your app, I used to do -> ffmpeg -ss 00:01:00 -to 00:02:00 -i "input.mp4" -c copy "input_cut.mp4" And it would cut the part in seconds, even in a five-hour video. But your app seems to "load" the entire video before cutting, which takes a lot longer, like 100x longer.

Can you tell me what's the difference between my command and the one you use? And why do you use it?

Thanks

paulpacifico commented 4 months ago

I think this is because it loads the waveform for the video player, uncheck the 'Show waveform' option to get a quicker loading.

Paul.

Peter-Soeiro commented 4 months ago

I was talking about loading during the cut.

When I cut using my command, it takes 10 seconds. When I cut using your app, it takes 10 seconds to reach 100%, but then it takes another 5 minutes to actually finish. (or longer depending on the video size), like it's loading the rest of the video before exporting the short clip.

I'm using an HDD and I'm working with vods (6 hours, 20 GB), so I can feel the problem.

My command doesn't get affected by how big the video is, only by how big the cut is.

I hope this is a better explanation of my problem