473,625 Members | 2,658 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to play .vox file in asp page

I need to play .vox files using ASP.
Can anyone help me out.
Oct 15 '07 #1
6 4786
=?Utf-8?B?SmF3YWhhcg= =?= wrote on 15 okt 2007 in
microsoft.publi c.inetserver.as p.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)
Oct 15 '07 #2

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.publi c.inetserver.as p.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)
Oct 15 '07 #3
=?Utf-8?B?SmF3YWhhcg= =?= wrote on 15 okt 2007 in
microsoft.publi c.inetserver.as p.general:
"Evertjan." wrote:
>=?Utf-8?B?SmF3YWhhcg= =?= wrote on 15 okt 2007 in
microsoft.publ ic.inetserver.a sp.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)
Oct 15 '07 #4
"Jawahar" <Ja*****@discus sions.microsoft .comwrote in message
news:6A******** *************** ***********@mic rosoft.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
Oct 15 '07 #5
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" <Ja*****@discus sions.microsoft .comwrote in message
news:6A******** *************** ***********@mic rosoft.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
Oct 16 '07 #6

"Jawahar" <Ja*****@discus sions.microsoft .comwrote in message
news:B5******** *************** ***********@mic rosoft.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
Oct 16 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1296
by: cbell | last post by:
I would like javascript file (which can be a .js file) which I can use to play .wav files on demand. there are many pages and there will only be ONE .wav file (about 20 seconds) for each page. the form table to go onto the page will have graphics (not form buttons) for: - play/pause - stop - volume >> I will design the buttons later, the form doesn't have to be fancy - it just has to work with graphic buttons.
1
3266
by: Lord2702 | last post by:
I want to play a sound file, which is on my server, and approximately 5 - 7 MB it is .Wav file. or .mp3, I want to play this file so that user of my site can click on a link to play this file. Is it possible to play a sound file in .aspx page. If it is through webservice, that is also good. C# code please. Also, please let me know waht is the best solution to play any sound file. Does my client require to have windows multi-media sdk(for...
1
7998
by: Lam | last post by:
how can I play sound file in a .aspx page written in C#? I try to use the code like the following. But whenI call the play function play("sound.wav", this.SND_ASYNC) my computer give out "be" sound instead playing the file (same code works fine in a windows application written in c# , that mean there is nothing wrong with my sound card.) thanks ----------------------------------------------------------------------------...
9
5600
by: Morris Neuman | last post by:
Im working with VS 2005 and trying to use a Hyperlink field in a datagrid to play a wave file that is not located in the website folders but is in a plain folder on the same machine, windows 2003 server, WMP 10.0 . If I type the full path in an IE address field it plays the file in WMP When I test my Web page ( running the debugger in VS.) The datagrid has a column called "MsgFile" with the full path to the wave file e.g....
3
3291
by: illmagination | last post by:
Hi, I recently received a task to have a .wav file play only once when home page is 1st loaded and only play again when the user re-visits the page by opening a new browser. I am using asp.net 2.0 framework. Could someone please guide me? Thank you.
13
4867
by: anil.rita | last post by:
When the user chooses an AV file to play, based upon the type of file, I want to use the default installed media player to play it. I am wondering if this is a good way - any alternatives, suggestions or improvements? if( wmv file) document.write("<OBJECT id=Player classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6 height="354" width="479">
26
3879
by: Jake Barnes | last post by:
I did a search on the newsgroup comp.lang.javascript. I was searching for "how to play a sound with Javascript". I'm somewhat suprised that the majority of entries are from the 1990s, and there are almost no posts from the last 3 years: http://groups.google.com/group/comp.lang.javascript/search?group=comp.lang.javascript&q=how+to+play+a+sound+with+Javascript&qt_g=Search+this+group Even after sorting by date, there don't appear any...
0
3724
by: vps | last post by:
The HTML document that Flash CS3 (version 9.0) creates when you choose “Publish” in “File” Menu loads a page which looks blank in browser. Only if you blindly locate the Flash object on this page, right click it and choose “Play” option from the menu that appears after the click, the file starts to play. Additional inforrmation: The "play" argument of "AC_FL_RunContent" function is set to "true". The issue is related to all major...
0
8251
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8182
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8688
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8635
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8352
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8494
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2614
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1800
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.