Internet Television not producing any sound

Post Reply
samsungfan
Posts: 62
Joined: Thu Dec 30, 2010 5:55 am

Internet Television not producing any sound

Post 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?
samsungfan
Posts: 62
Joined: Thu Dec 30, 2010 5:55 am

Re: Internet Television not producing any sound

Post 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;
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Re: Internet Television not producing any sound

Post by Eugene »

Depended on VLC version
Post Reply