Skip to content

Instantly share code, notes, and snippets.

@kuzetsa
Created March 16, 2025 05:34
Show Gist options
  • Save kuzetsa/16e476390e3863d8eecfa8c8204ddc4e to your computer and use it in GitHub Desktop.
Save kuzetsa/16e476390e3863d8eecfa8c8204ddc4e to your computer and use it in GitHub Desktop.
MP3_Clipper
#!/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