Created
July 30, 2024 11:31
-
-
Save devasheeshG/21b2ae1b4cef576a925a35d9233547d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Prompt for the m3u8 file link | |
read -p "Enter the m3u8 file link: " m3u8_link | |
# Prompt for the output file name without extension | |
read -p "Enter the output file name (without extension): " file_name | |
# Append the .mp4 extension to the file name | |
output_file="${file_name}.mp4" | |
# Download the m3u8 file | |
ffmpeg -i "$m3u8_link" -c copy "$output_file" | |
# Inform the user | |
echo "Download completed. The output is saved as $output_file." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment