๐
This file contains hidden or 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 | |
### Foreward | |
## | |
## This script is most likely shit, and you'd be better off making your own. | |
## | |
### Functions | |
play() { | |
echo -e " |
This file contains hidden or 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 | |
### This is a script used to convert YouTube and invidio video URLs to locally proxied invidio URLs. | |
main() { | |
clear | |
echo "Please input an invidio or YouTube video url." | |
read -r base | |
ID="$(echo "$base" | sed -n -e 's/^.*=//p')" | |
new="https://invidio.us/watch?v=$ID&local=true" |
NewerOlder