Skip to content

Instantly share code, notes, and snippets.

@devasheeshG
Created July 30, 2024 11:31
Show Gist options
  • Save devasheeshG/21b2ae1b4cef576a925a35d9233547d5 to your computer and use it in GitHub Desktop.
Save devasheeshG/21b2ae1b4cef576a925a35d9233547d5 to your computer and use it in GitHub Desktop.
#!/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