-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gcc --extra-version=3ubuntu1 8.100 3.100 1.100 1.100 1.100 1.100 1.100 1.100
- Loading branch information
1 parent
9e13467
commit a01f47e
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "/\<logs\>/ 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 | ||
|
||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
sudo apt update | ||
sudo apt upgrade | ||
sudo apt install -y ffmpeg | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# logs | ||
* 7.0.2-3ubuntu1 gcc on Thu Jan 2 12:25:42 AM GMT 2025 |