• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

fastest way to split an mp3?

vital

Platinum Member
i have a 1gb mp3 file and i need to split it in half... what's the fastest way without decoding to wav and reencoding to mp3?
 
if you have access to cygwin tools (or a linux/unix machine)
dd if=in.mp3 of=out1.mp3 bs=1048576 count=512
dd if=in.mp3 of=out2.mp3 bs=1048576 count=1000 skip=512
(the second count is higher since I assume your file isn't exactly 1 GB)

to put them together again: cat out1.mp3 out2.mp3 > new.mp3
 
Back
Top