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 | | 邮箱:[email protected] | 签名由 网易邮箱大师 定制 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 [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
