I'm trying to get a profile to work with the LG TV's and I'm having issues with MKV files and audio. The MKV files play but I'm getting audio not supported from the TV. These MKV files all have DTS 'dca' audio in them. So I need to change this from dca to AC3 5.1 audio. Has anyone had any luck with this?
Here is what I have so far in the profile:
- Code: Select all
# ps3mediaserver renderer profile for Samsung Wiselink
# Refer to PS3.conf for help
RendererName=LG (42LE5400)
UserAgentSearch=LG
Video=true
Audio=true
Image=true
SeekByTime=false
TranscodeVideo=MPEGAC3
TranscodeAudio=AC3
DefaultVBVBufSize=true
MuxH264ToMpegTS=true
MuxDTSToMpeg=false
WrapDTSIntoPCM=false
MuxLPCMToMpeg=false
MaxVideoBitrateMbps=0
MaxVideoWidth=0
MaxVideoHeight=0
MimeTypesChanges=audio/wav=audio/L16
TranscodeExtensions=mov
StreamExtensions=mp3,mp4,avi,mkv
Here is the output from ffmpeg -i:
- Code: Select all
Stream #0.0(eng): Video: h264, yuv420p, 1920x1080, PAR 1:1 DAR 16:9, 23.98 tbr, 1k tbn, 47.95 tbc
Stream #0.1(eng): Audio: dca, 48000 Hz, 6 channels, s16
Stream #0.2(eng): Subtitle: 0x0000
Supported options on the TV:
- Code: Select all
Video
Video Codecs: DivX, Xvid, H.264, AVC, MPEG2
Audio Codecs: AC3, ACC, WMA, MP3, DD
File Extensions: MP4, MKV, DIVX, AVI, MPEG, MPG, VOB
Music
Audio Codecs: WMA, MP3 (8-320 kbps)
File Extensions: WMA, MP3
Photos
Codecs: JPEG, PNG
File Extensions: JPG, JPEG, PNG
NOTES:
The most common video format to use is H.264 at 24 frames/sec.
LG TVs support 1080p at 30 frames/sec, but some other devices do not.
Remember, even when using a supported codec, the file container and file extension must also be supported by the player.
Now if I transcode the files myself into AC3 audio they work ok using ffmpeg -i file.mkv -y -vcodec copy -copyts -acodec ac3 -ab 384k -vbsf h264_mp4toannexb -sn -f mpegps MPEG2PS384KB.mkv
I just want to get this working during the stream so I don't have to manually trancode all these files. Thanks.
