diff --git a/ffmpeg/README.md b/ffmpeg/README.md new file mode 100644 index 0000000..ca6f52d --- /dev/null +++ b/ffmpeg/README.md @@ -0,0 +1,24 @@ +# FFmpeg +"FFmpeg is a free and open-source software project consisting of a suite of libraries and programs for handling video, audio, and other multimedia files and streams. At its core is the command-line ffmpeg tool itself, designed for processing video and audio files. It is widely used for format transcoding, basic editing (trimming and concatenation), video scaling, video post-production effects, and standards compliance (SMPTE, ITU)." https://en.wikipedia.org/wiki/FFmpeg + +## Installation +``` +bash install-ffmpeg.bash +``` + +## Commit changes +``` +export V=$(ffmpeg -version | awk '{print $3}') +#?sed -i "/\/ s/$/ \n# $(date) \nversion: $V;/" logs.md #insert date and version +git add . +git commit -am "#53 ffmeg $V" +git push origin main + +``` + +## References +https://ffmpeg.org/ +https://git.ffmpeg.org/ffmpeg.git + + + diff --git a/ffmpeg/install-ffmpeg.bash b/ffmpeg/install-ffmpeg.bash new file mode 100644 index 0000000..8bacc7c --- /dev/null +++ b/ffmpeg/install-ffmpeg.bash @@ -0,0 +1,4 @@ +sudo apt update +sudo apt upgrade +sudo apt install -y ffmpeg + diff --git a/ffmpeg/logs.md b/ffmpeg/logs.md new file mode 100644 index 0000000..b3c3ab4 --- /dev/null +++ b/ffmpeg/logs.md @@ -0,0 +1,2 @@ +# logs +* 7.0.2-3ubuntu1 gcc on Thu Jan 2 12:25:42 AM GMT 2025