On Mon, Nov 17, 2008 at 8:23 PM, Boleslaw Ciesielski <span dir="ltr">&lt;<a href="mailto:bolek-mythtv@curl.com">bolek-mythtv@curl.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Mon, Nov 17, 2008 at 07:29:50PM -0600, Richard Shaw wrote:<br>
&gt; I have a recording of &quot;Soundstage&quot; from my local PBS station that I would<br>
&gt; like to extract the audio from and create an audio CD tracks (instead of one<br>
&gt; big track). Has anyone else had a need for this? It&#39;s not something one<br>
&gt; would need frequently but as the same time I think it would be a great<br>
&gt; addition to MythArchive.<br>
&gt;<br>
&gt; I&#39;m guessing the basic steps would be something like this:<br>
&gt;<br>
&gt; Extract Audio<br>
&gt; Convert to 44.1KHz 2-channel audio (WAV)<br>
&gt; Cut audio into &quot;Tracks&quot; (audacity) [1]<br>
&gt; Burn (k3b)<br>
&gt;<br>
&gt; Anyone have suggestions? Especially for the first two steps?<br>
<br>
</div>Try something like this:<br>
<br>
mplayer -vc null -vo null -ao pcm:file=track.wav:waveheader:fast -af resample=44100:0:2 -benchmark foo.mpg</blockquote><div><br>Well I ended up finding out that ffmpeg handles this pretty well as well:<br><br>ffmpeg -i &lt;infile&gt;.mpg -f wav -ar 44100 -ac 2 &lt;Audio_out&gt;.wav<br>
<br>After that I pulled it into audacity which after a little learning curve worked quite well. On my first attempt I exported each &quot;track&quot; as a separate file which worked, but doesn&#39;t really allow for gapless burning. After a little more research I found out I could export to modified .wav file as a single file (spliced in a few places, normalized, and a few fade in/outs) and then export the &quot;Label&quot; track which with the help of a little utility, label2cue, created a .cue file.<br>
<br>Unfortunately, as much as I like k3b, it does something very bad here. It will read the .cue file fine but if I try to write to an image file, it does not create a .iso, it hacks up the .wav file into separate .wav files by track when I went to all the trouble in audacity to get a continuous .wav file. k3b does not appear to be gapless recording friendly. <br>
<br>I found a forum post which suggested using gcdmaster which apparently is the official frontend to cdrdao and supports gapless burning in DAO mode, but it does not appear to have a &quot;write to image&quot; option nor did it find my burner.<br>
<br>Anyway, that&#39;s where I&#39;m at right now.<br><br>Richard<br></div></div>