Page 1 of 1

Globally disable transcoding

Posted: Sat Jun 08, 2019 2:06 pm
by Atalantia
Hello,
how do I globally disable transcoding? I made a conf file for every device that contains:

Code: Select all

Device = 192.168.0.12
disable_transcode_for_extensions = mp4,m4v,mkv,avi,mpg,mpeg
But do I need that for each device? Can I do?:

Code: Select all

Device = 192.168.0.12 192.168.0.13 192.168.0.14 
or:

Code: Select all

Device = 192.168.0.12,192.168.0.13,192.168.0.14 

Re: Globally disable transcoding

Posted: Sat Jun 08, 2019 3:04 pm
by Nadahar
There's a setting in the global configuration to do this: https://github.com/UniversalMediaServer ... #L649-L656

That said, this should only be used for troubleshooting or similar, the whole idea of "disabling transcoding" is a logical fallacy. Transcoding is only used when the renderer cannot otherwise play the media. That means that disabling transcoding is the same as "disabling playback" of said media. I doubt that's what you're after.

What is normally the real problem is that the renderer is configured wrong, so that UMS think it has to transcode when it doesn't. The fix is to correct the configuration, not disable transcoding.

Re: Globally disable transcoding

Posted: Sun Jun 09, 2019 3:09 pm
by Atalantia
Thanks for answering. I'll look at little bit closer. Maybe I can disable all the conf file I made.