4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

.m3u8 ファイルから .mp4 ファイルを生成する方法

Posted at

動画を保存して、mp4に変換する機会があったので軽いメモです。
※Win環境です
※ほぼ自分用メモなので、かなりザックリしています

動画を保存する

動画を保存するために、Chrome拡張機能をインストールします。
今回は「Douga Getter」を使用させて頂きました。
https://www.douga-getter.com/

「Douga Getter」を使うと、.m3u8ファイルと.tsとして、動画を保存する事ができます。

m3u8をmp4に変換する

次に「ffmpeg」を使って .m3u8 ファイルから .mp4 ファイルを生成・保存します。
まずは「ffmpeg」をダウンロードします。
https://ffmpeg.zeranoe.com/builds/

ダウンロードができたら、分かりやすくするため、ffmpeg.exeを先程保存した.m3u8ファイルを保存しているフォルダにペーストします。
そしたら以下のコマンドをパワーシェルで実行して、mp4ファイルを作成します。

.\ffmpeg -allowed_extensions ALL -i 【m3u8ファイル名】.m3u8 -movflags faststart -c copy 【mp4ファイル名】.mp4

これを実行すると、mp4ファイルが作成されます。

4
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?