Skip to content

Instantly share code, notes, and snippets.

@nomaster
Last active December 18, 2020 18:46
Show Gist options
  • Save nomaster/eb85d2c3c4f68d4c584585ef80cdea6c to your computer and use it in GitHub Desktop.
Save nomaster/eb85d2c3c4f68d4c584585ef80cdea6c to your computer and use it in GitHub Desktop.
Chromecast Ultra with Plex Media Server
<?xml version="1.0" encoding="utf-8"?>
<Client name="Chromecast">
<TranscodeTargets>
<VideoProfile protocol="http" container="mkv" codec="h264,hevc" audioCodec="eac3,ac3" subtitleFormat="ass,srt" context="streaming"/>
<SubtitleProfile container="ass" codec="ass" context="all" />
</TranscodeTargets>
<DirectPlayProfiles>
<VideoProfile container="mp4" codec="hevc,mpeg1video,mpeg2video,h264,mpeg4" audioCodec="eac3,ac3,mp3,mp2"/>
<VideoProfile container="mkv" codec="vp9,hevc,mpeg1video,mpeg2video,h264,mpeg4" audioCodec="eac3,ac3,mp3,mp2,pcm,flac,alac,truehd" subtitleFormat="ass,srt"/>
<MusicProfile container="mp3" codec="mp2,mp3"/>
<MusicProfile container="ac3" codec="ac3"/>
<MusicProfile container="mp4" codec="aac"/>
<MusicProfile container="flac" codec="flac"/>
<MusicProfile container="wav" codec="pcm"/>
<PhotoProfile container="jpeg,png,gif"/>
</DirectPlayProfiles>
<CodecProfiles>
<VideoCodec name="*">
<Limitations>
<UpperBound name="video.width" value="3840"/>
<UpperBound name="video.height" value="2176"/>
<UpperBound name="video.bitrate" value="75000"/>
</Limitations>
</VideoCodec>
<VideoAudioCodec name="ac3,eac3">
<Limitations>
<UpperBound name="audio.channels" value="6"/>
</Limitations>
</VideoAudioCodec>
</CodecProfiles>
</Client>
@nomaster
Copy link
Author

Fixed an issue with playing subtitles. With this version, playing a video with external SRT subtitles work. However, embedded subtitles do not.

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