How to play .vox file in asp page

How to play .vox file in asp page

am 15.10.2007 12:45:01 von Jawahar

I need to play .vox files using ASP.
Can anyone help me out.

Re: How to play .vox file in asp page

am 15.10.2007 13:22:20 von exjxw.hannivoort

=?Utf-8?B?SmF3YWhhcg==?= wrote on 15 okt 2007 in
microsoft.public.inetserver.asp.general:

> I need to play .vox files using ASP.
> Can anyone help me out.

Does your webserver have sound and speakers?

If so, is anyone listening serverside?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: How to play .vox file in asp page

am 15.10.2007 13:35:02 von Jawahar

Hi thanks,

yes i can able to play .wav file by setting filename in bgsound property but
when i tried to play .vox file by the above method(bgsound=123.vox) it not
working
"Evertjan." wrote:

> =?Utf-8?B?SmF3YWhhcg==?= wrote on 15 okt 2007 in
> microsoft.public.inetserver.asp.general:
>
> > I need to play .vox files using ASP.
> > Can anyone help me out.
>
> Does your webserver have sound and speakers?
>
> If so, is anyone listening serverside?
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)
>

Re: How to play .vox file in asp page

am 15.10.2007 14:28:47 von exjxw.hannivoort

=?Utf-8?B?SmF3YWhhcg==?= wrote on 15 okt 2007 in
microsoft.public.inetserver.asp.general:
> "Evertjan." wrote:
>
>> =?Utf-8?B?SmF3YWhhcg==?= wrote on 15 okt 2007 in
>> microsoft.public.inetserver.asp.general:
>>
>> > I need to play .vox files using ASP.
>> > Can anyone help me out.
>>
>> Does your webserver have sound and speakers?
>>
>> If so, is anyone listening serverside?

[Please do not toppost on usenet]

[Please do not quote signatures on usenet. on usenet]

> yes i can able to play .wav file by setting filename in bgsound
> property
No, you cannot do that on a server.

'bgsound' is part of a browser
and browsrs live on clients, not on servers.

The ASP platform only lives on servers.

> but when i tried to play .vox file by the above
> method(bgsound=123.vox) it not working

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: How to play .vox file in asp page

am 15.10.2007 14:48:52 von Anthony Jones

"Jawahar" wrote in message
news:6AAF70F9-197B-448B-B8DD-EA9680EB5A6C@microsoft.com...
>
> Hi thanks,
>
> yes i can able to play .wav file by setting filename in bgsound property
but
> when i tried to play .vox file by the above method(bgsound=123.vox) it not
> working


This can't be done. Unlike .wav files that specify the codec and settings
for the codec as part of the file, vox files do not. Hence to play a vox
file the player needs to 1) know what a vox file is and 2) be told
separately what the sample rate and number channels are.

Even if you can acheive 1) there is no way through CSS to comunicate 2).

Convert the files to .wav or some other well know format.

--
Anthony Jones - MVP ASP/ASP.NET

Re: How to play .vox file in asp page

am 16.10.2007 08:46:00 von Jawahar

Hi Anthony,

Thanks for ur comments. Do you know how can we convert .vox file to .wav
file in asp. If so can you please send me the code to me. Its very urgent. i
am expectiing your reply

"Anthony Jones" wrote:

> "Jawahar" wrote in message
> news:6AAF70F9-197B-448B-B8DD-EA9680EB5A6C@microsoft.com...
> >
> > Hi thanks,
> >
> > yes i can able to play .wav file by setting filename in bgsound property
> but
> > when i tried to play .vox file by the above method(bgsound=123.vox) it not
> > working
>
>
> This can't be done. Unlike .wav files that specify the codec and settings
> for the codec as part of the file, vox files do not. Hence to play a vox
> file the player needs to 1) know what a vox file is and 2) be told
> separately what the sample rate and number channels are.
>
> Even if you can acheive 1) there is no way through CSS to comunicate 2).
>
> Convert the files to .wav or some other well know format.
>
> --
> Anthony Jones - MVP ASP/ASP.NET
>
>
>

Re: How to play .vox file in asp page

am 16.10.2007 12:53:07 von Anthony Jones

"Jawahar" wrote in message
news:B5F7B2E9-4AA2-4569-9EF4-6430A5FC0687@microsoft.com...
> Hi Anthony,
>
> Thanks for ur comments. Do you know how can we convert .vox file to .wav
> file in asp. If so can you please send me the code to me. Its very urgent.
i
> am expectiing your reply
>

No I don't. Have you tried Google: Convert Vox to Wav ?

--
Anthony Jones - MVP ASP/ASP.NET