hi all . could any one tell me the command to decrypt the m3u8 .ts files without merging the chunks ? The current command i use merges the decrypted .ts files but i dont want them to be merged . I just want the .ts files decrypted and kept as chunks. Hope some one help me with this task.Thanks
Code:ffmpeg -i "http://www.somesite.com/testVideo.m3u8" -c copy decryptedTs.ts
+ Reply to Thread
Results 1 to 2 of 2
-
-
Copy the m3u8 playlist (or, if applicable, the m3u8 chunklist) and the key file to a local folder along with the single .ts segment. Edit the playlist (or the chunklist) so that it only contains reference to the key file name and the file name of the single .ts segment. The playlist/chunklist should contain file names only, not urls. Likewise for the ffmpeg input.
Code:ffmpeg -i "local edited m3u8 playlist/chunklist" -c copy decryptedTs.ts