{"id":59,"date":"2015-05-22T20:34:59","date_gmt":"2015-05-22T19:34:59","guid":{"rendered":"https:\/\/tollana.d-tor.org\/notes-to-self\/?p=59"},"modified":"2016-11-27T01:04:59","modified_gmt":"2016-11-27T00:04:59","slug":"flac-cue-to-mp3","status":"publish","type":"post","link":"https:\/\/tollana.d-tor.org\/notes-to-self\/?p=59","title":{"rendered":"flac + cue to mp3"},"content":{"rendered":"<p>To convert a single flac file with a cue sheet to mp3, first split it up:<\/p>\n<pre>$ shnsplit -f &lt;sheet.cue&gt; &lt;source.flac&gt;<\/pre>\n<p>Then convert the wav-files to mp3 with ffmpeg:<\/p>\n<pre>for i in *.wav ; do ffmpeg -i ${i} -codec:a libmp3lame -qscale:a 2 ${i%%wav}mp3 ; done<\/pre>\n<p>Or, if you have individual flac files:<\/p>\n<pre>for i in *.flac; do ffmpeg -i ${i} -codec:a libmp3lame -qscale:a 2 ${i%%flac}mp3 ; done<\/pre>\n<p>qscale:a 2 produces mp3s with an average bitrate around 170-210 kbit\/s. It should be close to lossless.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To convert a single flac file with a cue sheet to mp3, first split it up: $ shnsplit -f &lt;sheet.cue&gt; &lt;source.flac&gt; Then convert the wav-files to mp3 with ffmpeg: for i in *.wav ; do ffmpeg -i ${i} -codec:a libmp3lame -qscale:a 2 ${i%%wav}mp3 ; done Or, if you have individual flac files: for i in &hellip; <a href=\"https:\/\/tollana.d-tor.org\/notes-to-self\/?p=59\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">flac + cue to mp3<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[77,78],"tags":[25,48,24,23,91],"class_list":["post-59","post","type-post","status-publish","format-standard","hentry","category-linux","category-transcoding","tag-cue","tag-ffmpeg","tag-flac","tag-mp3","tag-shnsplit"],"_links":{"self":[{"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/posts\/59","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=59"}],"version-history":[{"count":3,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/posts\/59\/revisions"}],"predecessor-version":[{"id":90,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=\/wp\/v2\/posts\/59\/revisions\/90"}],"wp:attachment":[{"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=59"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=59"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tollana.d-tor.org\/notes-to-self\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=59"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}