Hi, I downloaded afew off files from the site (www.vorbis.com) and also downloaded the winamp plugin (dll file), but I am unable to play the off files. -- Ramakrishnan.M | Phone : (+91-80)-5099132 DSP Applications Group, Texas Instruments | email : rkrishnan@ti.com Bangalore, India | rkrishnan_m@yahoo.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/
At 11:37 AM 6/21/00 +0530, you wrote:> >Hi, > I downloaded afew off files from the site (www.vorbis.com) and also >downloaded the winamp plugin (dll file), but I am unable to play the offfiles.>I think the mime types aren't set up correctly, so some programs (such as netscape) will download the files in ascii mode, thus corrupting them irretrievably. If you encode your own songs, or use a program which doesn't mangle the file, you should be able to play them without difficulty. Michael --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/
Ramakrishnan M wrote:> > downloaded the winamp plugin (dll file), but I am unable to play the off files./s/off/ogg -- Ramakrishnan.M | Phone : (+91-80)-5099132 DSP Applications Group, Texas Instruments | email : rkrishnan@ti.com Bangalore, India | rkrishnan_m@yahoo.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/
Hi all, There seems to be a problem with the winamp plugin not releasing the file when playing is stopped. I put ov_clear(&input_file); into the stop() function and that seems to work, but I'm fairly new to ogg so it could be the wrong way of doing things ! void stop() { if (thread_handle != INVALID_HANDLE_VALUE) { killDecodeThread = 1; if (WaitForSingleObject(thread_handle, INFINITE) == WAIT_TIMEOUT) { MessageBox(mod.hMainWindow, "error asking thread to die!\n", "error killing decode thread", 0); TerminateThread(thread_handle, 0); } CloseHandle(thread_handle); thread_handle = INVALID_HANDLE_VALUE; ov_clear(&input_file); } // deallocate sample buffer if (sample_buffer) free(sample_buffer); mod.outMod->Close(); mod.SAVSADeInit(); } -- --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/