Convert .flac and .ape to mp3

Ultima ultima1252 at gmail.com
Sat Jan 6 20:31:10 UTC 2018


Thanks for the link Andreas, it is a good read.

Was very tired when I made the reply yesterday so
apologies for not double checking and explaining my
minimal responses.

I want to also mention if you want to build a more
reliable script, you should also check if the file is
actually the media format suggested by the extension.

My solution to this problem is first checking if an error
occurs when ffprobe runs the file with -loglevel -8 options.
This will verify that ffmpeg can actually read the file. Next
run it a second time to verify the media format.

ffprobe is very fast so you don't have to worry about taking
a performance hit.

These are just some of the checks that I run before
processing any media and I recommend it for preventing
headaches later.

Best regards,
Richard Gallamore

On Sat, Jan 6, 2018 at 8:12 AM, Andreas Perstinger <andipersti at gmail.com>
wrote:

> On 2018-01-06 16:17, Victor Sudakov wrote:
>
>> Michael Ross wrote:
>>
>>> > #!/bin/sh
>>> > for i in `find . -iname '*.ape'`
>>> > do
>>> >   do_something $i
>>> > done
>>> >
>>> > breaks on spaces.
>>> >
>>> > What is the sh magic to handle such filenames?
>>> >
>>>
>>> xargs, you may want to run a few conversions in parallel:
>>>
>>> find . -iname '*.ape' -print0 | xargs -0 -I% -P<parallel_runs> convert
>>> %  %.mp3
>>>
>>
>> I'm sure there are many ways to solve the problem, including writing a
>> C program, but a solution in pure sh has its own value and appeal.
>>
>
> Well, you use already the find command, so why don't you use it's full
> power?
>
> https://unix.stackexchange.com/questions/321697
> (Why is looping over finds output bad practice?)
>
> Bye, Andreas
>
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe
> @freebsd.org"
>


More information about the freebsd-questions mailing list