Page 1 of 1
Internet Television not producing any sound
Posted: Mon Apr 25, 2011 6:10 pm
by samsungfan
Hi,
i am trying to stream a mms stream by adding it as link in internet television. The video is rendering fine but there is no sound. How can i troubleshoot the audio problem?
Re: Internet Television not producing any sound
Posted: Tue Apr 26, 2011 5:52 am
by samsungfan
I figured out how to make the sound work. I needed to change the audio codec to mp2a instead of mpga as configured for the Internet Television
function GetAudioCodec(const aFileFormat: string): string;
begin
if Pos('ASF', aFileFormat) > 0 then
Result := 'wma2'
else if Pos('SONY', UpperCase(cfgDeviceType)) > 0 then
Result := 'mp2a'
else if Pos('IPOD', UpperCase(cfgDeviceType)) > 0 then
Result := 'aac'
else
Result := 'mp2a' //mpga
end;
Re: Internet Television not producing any sound
Posted: Tue Apr 26, 2011 5:30 pm
by Eugene
Depended on VLC version