Changes between Initial Version and Version 1 of jazz/19-03-08


Ignore:
Timestamp:
Mar 8, 2019, 11:49:24 AM (5 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/19-03-08

    v1 v1  
     1= 2019-03-08 =
     2
     3== M3U8 ==
     4
     5* [需求] 最近偶爾都會看到很多串流是一堆 TS 格式的檔案,後來才發現應該是先有一個 m3u8 格式的檔案,然後播放器就會依序下載不同的 TS 檔。那麼怎麼下載 msu8 播放清單變成單一影片呢?
     6* https://superuser.com/questions/1260846/downloading-m3u8-videos
     7* 這裡寫了兩種方式,第一種是用 ffmpeg 第二種是用 youtube-dl
     8{{{
     9ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://XXXX/XXXX.m3u8" -c copy video.mp4
     10}}}
     11{{{
     12youtube-dl http://XXXX/XXXX.m3u8
     13}}}