diff --git a/sgit b/sgit index 3be9f79..0d16589 100755 --- a/sgit +++ b/sgit @@ -4,7 +4,7 @@ set -ex [ -n $"{1}" ] && git config --global user.email "${1}" git add --all -git commit --all +git commit --all -m fix git push git show git status diff --git a/youtube-dl-android.sh b/youtube-dl-android.sh index f09954d..f7b0502 100755 --- a/youtube-dl-android.sh +++ b/youtube-dl-android.sh @@ -4,7 +4,7 @@ set -ex read -p "Wie ist die URL? : " url read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad -read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/60k] : " format +read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format if [ "$format" == "opus" ] then @@ -15,7 +15,7 @@ then elif [ "$format" == "video" ] then format="-f 43" -elif [ "$format" == "60k" ] +elif [ "$format" == "4k" ] then format="-f 303+251" fi diff --git a/youtube-dl.sh b/youtube-dl.sh index c9cef45..6209831 100755 --- a/youtube-dl.sh +++ b/youtube-dl.sh @@ -4,7 +4,7 @@ set -ex read -p "Wie ist die URL? : " url read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad -read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST] : " format +read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format if [ "$format" == "opus" ] then @@ -15,6 +15,9 @@ then elif [ "$format" == "video" ] then format="-f 43" +elif [ "$format" == "4k" ] +then + format="-f 303+251" fi mkdir -p $pfad diff --git a/youtube.sh b/youtube.sh index f27ced2..2bd3d4d 100755 --- a/youtube.sh +++ b/youtube.sh @@ -16,7 +16,7 @@ then voll="-fs" fi -read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/60k] : " format +read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format if [ "$format" == "opus" ] then @@ -27,7 +27,7 @@ then elif [ "$format" == "video" ] then format="-f 43" -elif [ "$format" == "60k" ] +elif [ "$format" == "4k" ] then format="-f 303+251" fi