Created
July 30, 2024 11:38
-
-
Save devasheeshG/a59fdcd30bacd04730f230b99fe08281 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 segment link | |
read -p "Enter the segment link of the video: " segment_link | |
# Extract the base URL from the segment link | |
base_url=$(dirname "$segment_link") | |
# Construct the m3u8 link by appending 'master.m3u8' to the base URL | |
m3u8_link="${base_url}/master.m3u8" | |
# 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