Created
April 26, 2017 01:32
-
-
Save au5ton/bc9d70cfe32583ba6e5e246c6d3e958c to your computer and use it in GitHub Desktop.
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
@echo off | |
forfiles /s /m *.flac /c "cmd /c ffmpeg -i @path -b:a 320k @path.mp3" |
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 | |
find . -name "*.flac" -exec ffmpeg -i {} -b:a 320k $(basename {}).mp3 \; |
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
@echo off | |
forfiles /s /m *.flac /c "cmd /c ffmpeg -i @path -b:a 0 @path.mp3" |
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 | |
find . -name "*.flac" -exec ffmpeg -i {} -b:a 0 $(basename {}).mp3 \; |
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
@echo off | |
forfiles /s /m *.flac /c "cmd /c ffmpeg -i @path -b:a 2 @path.mp3" |
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 | |
find . -name "*.flac" -exec ffmpeg -i {} -b:a 2 $(basename {}).mp3 \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment