Last active
March 9, 2023 09:34
-
-
Save henrydatei/b85f2ffbe0390b2e8b069ab1e5765986 to your computer and use it in GitHub Desktop.
Download a video from Videocampus Sachsen
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
#file=$1 | |
#videoname=$(echo "$file" | cut -d "." -f1) | |
#echo "$videoname" | |
touch playlist.txt | |
touch urllist.txt | |
key=$1 | |
videoname=$2 | |
#keystring=$(cat $file | grep -o -E "key=[0-9,a-z]+") | |
#key=$(echo "$keystring" | cut -c 5-) | |
link="https://videocampus.sachsen.de/media/hlsMedium/key/$key/format/auto/ext/mp4/learning/0/path/m3u8" | |
playlist=$(curl -s "$link" | tail -n 1) | |
newLink="https://videocampus.sachsen.de/media/hlsMedium/key/$key/format/auto/ext/mp4/learning/0/path/$playlist" | |
wget -O playlist.m3u8 "$newLink" | |
for line in $(cat playlist.m3u8 | grep ".ts"); do | |
partLink="https://videocampus.sachsen.de/media/hlsMedium/key/$key/format/auto/ext/mp4/learning/0/path/$line" | |
echo "$partLink" >> urllist.txt | |
echo "file $line" >> playlist.txt | |
done | |
cat urllist.txt | parallel -j 50 'wget {}' | |
ffmpeg -f concat -i playlist.txt -c copy $videoname.mp4 | |
rm playlist.m3u8 | |
rm playlist.txt | |
rm urllist.txt | |
rm *.ts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To download some videos today I wasn't succesful with the script but these steps worked:
(Show screenshot)
Example: