erfan
erfan

Reputation: 159

How can I manage the download of m3u8 file by ffmpeg?

How can I manage the download of m3u8 file by ffmpeg?

ffmpeg -i "url" -c copy -y "video.mp4"

How can I manage the download request?

For example, stop downloading

Download reload

Download from the stopped value onwards

And many other things that can be done for management

Upvotes: 1

Views: 2122

Answers (1)

Nabi K.A.Z.
Nabi K.A.Z.

Reputation: 10704

Basic ffmpeg Not built for download operations. For this reason, it may not be powerful.
Its main power is for convert video.

However, you can use some keys in the terminal environment:

  • the Ctrl+C key to stop operations.
  • the Pause key to pause.
  • the Enter key to continue.

Upvotes: 1

Related Questions