echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
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
| # Put this file in the root of substrate / polkadot directory. | |
| FROM rust:latest | |
| RUN dpkg --add-architecture arm64 && \ | |
| apt-get update && apt-get upgrade -y && \ | |
| apt-get install -y aptitude && \ | |
| aptitude install -y \ | |
| gcc-aarch64-linux-gnu \ | |
| g++-aarch64-linux-gnu \ |
