I recorded a mixtape onto mp3s; unfortunately, each side had its own mp3! Can I mix these 2 files together with dbPowerAMP?
Mixing mp3s
Collapse
X
-
-
Re: Mixing mp3s
Originally posted by djgeckoI recorded a mixtape onto mp3s; unfortunately, each side had its own mp3! Can I mix these 2 files together with dbPowerAMP?
The easiest way to "fake" a continuous audio file (if you're not overly concerned with the little gap that may still be between your 2 files), is to set up an .asx meta-file to stream both in sequence.
Using Notepad create a file which you will save under the name somename.asx.
This file should contain at the very least the following lines:
Code:<ASX VERSION="3.0"> <ENTRY> <REF HREF="cassette-side-1.mp3" /> [B]<STARTTIME VALUE="hh:mm:ss.fract" /> <DURATION VALUE="hh:mm:ss.fract" />[/B] <Title>side 1</Title> <Abstract>blah, blah</Abstract> <Author>blah, blah</Author> <Copyright>blah, blah</Copyright> </ENTRY> <ENTRY> <REF HREF="cassette-side-2.mp3" /> [B]<STARTTIME VALUE="hh:mm:ss.fract" /> <DURATION VALUE="hh:mm:ss.fract" />[/B] <Title>side 2</Title> <Abstract>blah, blah</Abstract> <Author>blah, blah</Author> <Copyright>blah, blah</Copyright> </ENTRY> ... ... </ASX>
Then the file you will playe is your somename.asx file, rather than the individual mp3 files.Comment
-
Re: Gaps in text file?
Originally posted by djgecko2 questions:
Do I need all those gaps in the file? Can I put in more than 2 mp3s?
The blank lines are for better readability. The dottes liens are not part of it.
Every audio file you want to have in there must be in its own segment between a <entry> and a </entry> tag. Lowercase or upper case are not important except in the audio file name itself (in the <ref href .. tag) where you must have it exactly as it is on your computer and in between double quotes. The other tags like <author> ... </author>, etc, are just for text that wil be shown in Windows Media Player.
Pay attention to the paired and non paired tags. Basically they are all paired except for the <ref href > tag which is stand alone as well as the <starttime> and <duration> tags which are optional anyway.
If you're not concerned with the little time gap between the files, then you don't need to use the <starttime..> and <duration > tags.Comment
-
Re: Gaps in text file?
Originally posted by djgecko^Thanks. Since it's an ASX file, how can I stream-cast it on the Web for free?
Of course, your own web hosting company must support media files in the first place. Generally paid hosting does, while free hosting such as www.netfirms.com or maybe geocities do not or only allow very small files (under 250k).Comment
Comment