LAME-Tag error
I'm getting this error when transcoding:
(/Library/Application Support/Subsonic/transcode/lame) fatal error: can't update LAME-tag frame!
which seems to cause the Subsonic app I'm writing to think the stream has ended.
I found an alternative method of transcoding from OGG using ffmpeg, but it also glitches out my player at the same time-point.
there is a LAME command-line switch:
--ignore-tag-errors
but it causes the following when transcoding OGG:
DEBUG InputStreamReaderThread - (/Library/Application Support/Subsonic/transcode/ffmpeg) av_interleaved_write_frame(): Operation not permitted
When transcoding FLAC, I also get the tag-frame error, and the same ffmpeg error if I use the ignore-tag-frame:
lame --ignore-tag-frame -b %b --tt %t --ta %a --tl %l -S --resample 44.1 - -
(/Library/Application Support/Subsonic/transcode/lame) fatal error: can't update LAME-tag frame!
which seems to cause the Subsonic app I'm writing to think the stream has ended.
I found an alternative method of transcoding from OGG using ffmpeg, but it also glitches out my player at the same time-point.
there is a LAME command-line switch:
--ignore-tag-errors
but it causes the following when transcoding OGG:
DEBUG InputStreamReaderThread - (/Library/Application Support/Subsonic/transcode/ffmpeg) av_interleaved_write_frame(): Operation not permitted
When transcoding FLAC, I also get the tag-frame error, and the same ffmpeg error if I use the ignore-tag-frame:
lame --ignore-tag-frame -b %b --tt %t --ta %a --tl %l -S --resample 44.1 - -