callesoroe wrote: 
> I had that issue too. I am using Tidal with LMS. It seems like some
> tracks after about March 2019 is getting compressed at too high level.
> Many squeezebox devices don't like that, and make stuttering sound. I
> fixed this using SOX to transcode.
> Make a custom-convert.conf file containing this:
> 
> flc flc * *
>               [sox] -q -t flac $FILE$ -t flac -
> 
> That solved the problem for me.

Thanks for the workaround to re-encode the flac files, that worked well
and eleminated the stuttering for me :)

There is just one side effect, I wasn't able to play a subsection of a
flac file anymore.
In my use case this means I have single flac files that contains a
complete album or livesets. Additional files with cue sheets are used to
navigate to each song individually. With the above fix I wasn't able to
play a specific song anymore, instead squeezebox server stopped playing
and I got bored with silence.

So I have adopted the re-encoding fix to allow playing of subsections
again:


Code:
--------------------
    
  flc flc * *
  # FT:{START=--skip=%t}U:{END=--until=%v}
  [flac] -cs --totally-silent --compression-level-0 $START$ $END$ -- $FILE$ -
  
--------------------


As sox isn't able to cut out subsections of a file this fix uses flac
itself to re-encode the data.
I didn't measure if flac might costs more CPU cycles compared to sox ;)

have phun
Phil


------------------------------------------------------------------------
PiF's Profile: http://forums.slimdevices.com/member.php?userid=70191
View this thread: http://forums.slimdevices.com/showthread.php?t=111370

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to