SpiderJon wrote: 
> Yes:
> 
> *pi@raspi:~ $* ffmpeg -decoders
> ffmpeg version 3.2.12-1~deb9u1+rpt1 Copyright (c) 2000-2018 the FFmpeg
> developers
> built with gcc 6.3.0 (Raspbian 6.3.0-18+rpi1+deb9u1) 20170516
> 
> Decoders:
> V..... = Video
> A..... = Audio
> .....D = Supports direct rendering method 1 
> [snip]
> A....D mpc7                 Musepack SV7 (codec musepack7)
> A....D mpc8                 Musepack SV8 (codec musepack8)
> 
> (Not sure why an audio decoder needs to render anything, but maybe I'm
> missing something.)

rendering is usually the term used to mean decode and convert back into
a playable (i.e. pcm) format.  In DLNA the term "renderer" is a player.
In display technology vector or matrix images are rendered on the
screen.

Can you try (the "-f" defines the file format of the following file -
check with "ffmpeg -formats" that mpc and mpc8 are supported)

Code:
--------------------
    
  ffmpeg -f mpc   -i inputfilefile.mpc  -f flac outputfile.flc
  ffmpeg -f mpc8 -i inputfilefile.mpc  -f flac outputfile.flc
  
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=110406

_______________________________________________
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to