Skip to content

Instantly share code, notes, and snippets.

@jemus42
Created March 30, 2017 15:56
Show Gist options
  • Save jemus42/f691238ab078499fff296079a6f8e3aa to your computer and use it in GitHub Desktop.
Save jemus42/f691238ab078499fff296079a6f8e3aa to your computer and use it in GitHub Desktop.
Plex Media Server profile for Chromecats Ultra with HEVC support but with AC3 transcoding
<?xml version="1.0" encoding="utf-8"?>
<Client name="Chromecast">
<!-- Author: Plex Inc. -->
<TranscodeTargets>
<VideoProfile protocol="http" container="mkv" codec="h264" audioCodec="aac,mp3" context="streaming" />
<MusicProfile container="mkv" codec="opus" />
<PhotoProfile container="jpeg" />
<SubtitleProfile container="ass" codec="ass" />
</TranscodeTargets>
<CodecProfiles>
<VideoCodec name="*">
<Limitations>
<UpperBound name="video.width" value="1920" isRequired="true" />
<UpperBound name="video.height" value="1080" isRequired="true" />
</Limitations>
</VideoCodec>
<VideoCodec name="h264">
<Limitations>
<UpperBound name="video.bitDepth" value="8" />
<UpperBound name="video.level" value="42" />
</Limitations>
</VideoCodec>
<VideoAudioCodec name="*">
<Limitations>
<UpperBound name="audio.channels" value="6" />
</Limitations>
</VideoAudioCodec>
</CodecProfiles>
</Client>
@jemus42
Copy link
Author

jemus42 commented Mar 30, 2017

Goes in /usr/local/share/plexmediaserver-plexpass/Resources/Profiles on FreeBSD, path on other systems should be similar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment