Created
March 16, 2025 05:34
-
-
Save kuzetsa/16e476390e3863d8eecfa8c8204ddc4e to your computer and use it in GitHub Desktop.
MP3_Clipper
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
#!/bin/bash | |
# Duration to extract (format HH:MM:SS) | |
duration='00:27:00' | |
# Execute ffmpeg with hardcoded filenames: | |
ffmpeg -i "input.mp3" -t "$duration" -c:a copy "pr0n.mp3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment