blob: eec67108141917f6b536e967af76ca6c4de7dbc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
cat <<EOF
Emby is not compatible with the 10-bit versionof libx264. Please stick to the
8-bit version if you plan on using emby's transcoding features.
EOF
}
post_upgrade() {
post_install
}
|