Create MP3 from Command Line

Posted by Roy Sudipto | | , | 0 comments »

If you want to create a mix of MP3 files to send to your crush/friends but aren't sure what playlist format their media player supports or whether or not they'd know how to unzip a folder of individual tracks? Check out this tip using the Command Prompt.

You can make a playlist of your favourite songs. Then put all your favorite songs in a folder.
Then run this command to create a single mp3 file which will play all your songs one by one.

Go to command prompt and type from inside the folder where all songs are there:
copy /b *.mp3 c:\favourite.mp3

To choose invidividual files, list the filenames separated by the + symbol. Yes, the conjoined files aren't easily separated and the recipient won't be able to skip from track to track. But it's super-fast.

So now Just Create a single mp3 file for all your favorite songs and send to people.

If you want to create a mix of MP3 files to send to your crush/friends but aren't sure what playlist format their media player supports or whether or not they'd know how to unzip a folder of individual tracks? Check out this tip using the Command Prompt.

You can make a playlist of your favourite songs. Then put all your favorite songs in a folder.
Then run this command to create a single mp3 file which will play all your songs one by one.

Go to command prompt and type from inside the folder where all songs are there:
copy /b *.mp3 c:\favourite.mp3

To choose invidividual files, list the filenames separated by the + symbol. Yes, the conjoined files aren't easily separated and the recipient won't be able to skip from track to track. But it's super-fast.

So now Just Create a single mp3 file for all your favorite songs and send to people.

0 comments