[FFmpeg-user] How to merge the segmented video files into one .MP4 video file?

mikelee164396 mikelee164396 at 163.com
Fri Mar 13 11:27:10 EET 2020


My m3u8 file include the line :  #EXT-X-KEY:METHOD=AES-128,URI="http://127.0.0.1/hls.key";
but I can't find the file hls.key on my Android tablet. Maybe the file is a private file.please tell me how to get the file and copy it out? but I don't want to root.





| |
mikelee164396
|
|
邮箱:mikelee164396 at 163.com
|

签名由 网易邮箱大师 定制

On 03/10/2020 20:51, Moritz Barsnick wrote:
> I installed an app with Android Tablet, and then downloaded a video
> through this app. Actually the app download a  .m3u8 file and several
> .ts files. The file list picture and  .m3u8 files See Attachment. How
> can I merge these files to generate an mp4 video file?

Usually, just
$ ffmpeg -i 1053645342_1.m3u8 -c copy output.mp4
should be sufficient.

In this case, the m3u8 "playlist" refernces a crypto key:

> #EXT-X-KEY:METHOD=AES-128,URI="http://127.0.0.1/hls.key"

I don't know whether the Android app inserted or modified this line.
You will have to get hold of that key file, and modify that line to
point to its location.

Or better: Just use the original video location with ffmpeg:

$ ffmpeg -i http://server.example.com/path/to/1053645342_1.m3u8 -c copy output.mp4

ffmpeg will then pick up the key file and decrypt the video for you.

Cheers,
Moritz
_______________________________________________
ffmpeg-user mailing list
ffmpeg-user at ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-request at ffmpeg.org with subject "unsubscribe".


More information about the ffmpeg-user mailing list