cp WS_10001.WMA fixed.wma dd if=WS_10004.WMA of=fixed.wma conv=notrunc bs=1 count=16384
>>> original = open('WS_10001.wma', 'rb').read()
>>> goodfile = open('WS_10006.wma', 'rb').read()
>>> fixed = goodfile[:16384] + original[16384:]
>>> open('fixed.wma', 'wb').write(fixed)
You are not logged in, either login or create an account to post comments
posted by bongo_x at 10:08 PM on May 30, 2012