termux-packages icon indicating copy to clipboard operation
termux-packages copied to clipboard

[Package]: mp3cat combine mutliple mp3

Open OilSubjectLoss7 opened this issue 1 year ago • 1 comments

Why do you want to add this package to Termux?

very useful

Home page URL

https://github.com/dmulholl/mp3cat

Source code URL

https://github.com/dmulholl/mp3cat

Packaging policy acknowledgement

Additional information

No response

OilSubjectLoss7 avatar Oct 24 '22 06:10 OilSubjectLoss7

Packaging Policy. Not serving duplicated functionality

Hello. You can merge audio files with ffmpeg:

cd storage/downloads/audio/
printf "file '%s'\n" *.mp3 > allname.txt
ffmpeg -f concat -safe 0 -i allname.txt -c copy all.mp3

You can replace .mp3 with .wav and it will work just as fast.

snooppr avatar Nov 01 '22 18:11 snooppr