mirror of
https://github.com/iAmInActions/random-scripts.git
synced 2024-11-21 19:40:12 +00:00
16 lines
424 B
Bash
16 lines
424 B
Bash
echo "Live Re-encoder for low bandwidth"
|
|
echo "By Mueller Minki"
|
|
echo "Wrapper script by ScarlettPPC"
|
|
|
|
echo "Enter YouTube/TikTok/media link:"
|
|
read _link
|
|
|
|
echo "Enter quality (low, mid or high):"
|
|
read _quality
|
|
|
|
|
|
echo http://muellers-software.org/live-encode/video/mp4-h264.php?quality=${_quality}&url=${_link}
|
|
curl "http://muellers-software.org/live-encode/video/mp4-h264.php?quality=${_quality}&url=${_link}" | ffplay -
|
|
|
|
|