Skip to content

Commit

Permalink
Added command to remove all the metadata from an MP3 file
Browse files Browse the repository at this point in the history
  • Loading branch information
dmotte committed Dec 11, 2024
1 parent 1d1245c commit e2753d3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions snippets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Some pieces of code I find useful for some reason.
- `for i in *.mp3; do echo "$i"; ffmpeg -i "$i" -af volumedetect -vn -sn -dn -f null /dev/null 2>&1 | grep -E '^\[Parsed_volumedetect.+_volume: .+$'; done`
- `ffmpeg -i input.mp3 -filter:a 'dynaudnorm=p=0.9:s=5' output.mp3`
- `ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -b:a 192k -shortest output.mp4`
- `ffmpeg -i input.mp3 -map 0:a -c:a copy -map_metadata -1 output.mp3`
- `watch -n.2 date`
- `scp myfile.txt user@hostname:/home/user/myfile.txt`
- `ipfs daemon &`, `jobs`, `fg 1`, `kill %1`
Expand Down

0 comments on commit e2753d3

Please sign in to comment.