Ffmpeg
Unanswered
Plott Hound posted this in #help-forum
Plott HoundOP
I have an application that serves videos in HLS format, with .m3u8 and .ts of 20 seconds.
I want to implement the clipping function. I am currently doing it by selecting the .ts of the clip and creating an .m3u8 based on these segments, but the problem is that it saves the complete segments and not just the part that I need.
I had the idea of creating an .mp4 with these segments with ffmpeg.
My app use node and is running on vercel.
For do this I need a server that offers me a machine with ffmpeg to which I can make requests to create these mp4s and upload them to an S3 bucket?
Or exists a package with the ffmpeg binary to execute the commands directly from node?
I want to implement the clipping function. I am currently doing it by selecting the .ts of the clip and creating an .m3u8 based on these segments, but the problem is that it saves the complete segments and not just the part that I need.
I had the idea of creating an .mp4 with these segments with ffmpeg.
My app use node and is running on vercel.
For do this I need a server that offers me a machine with ffmpeg to which I can make requests to create these mp4s and upload them to an S3 bucket?
Or exists a package with the ffmpeg binary to execute the commands directly from node?