Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: OGG audio recorder (Read 3733 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

OGG audio recorder

hi!

  i've been trying to set up an audio recorder using VC++ . sad to say that so far, i've only managed to record in .wav format and not the ogg format I want. sigh... and it's for an urgent school project ! 

is there anyone who has tried to set up a recorder to record in ogg format? wld appreciate it very much if you can kindly post any resource/ experience that u had... thanks!


OGG audio recorder

Reply #2
hey thanks so much! 

the programs I've downloaded from the sites are working and they are great! 

eh... but the 1 from LiveInCode is written in delphi  & the 1 from HarddiskOgg does not provide the source code... ( or did I overlook anything?)

i wonder if you know of any ogg recorder that is written in VC++? cos i need to integrate it with an exisitng VC++ program that I have... or does anyone of you have experience with buliding a web-page streaming recorder that records in ogg format? i've tried freedomaudio but it doesnt work 

thanks once again! 

OGG audio recorder

Reply #3
What goes wrong? Apparently you have succeeded in recording to .wav files, so what's stopping you from simply taking the example that comes with the Ogg Vorbis SDK and modifying it?

You could also try piping your raw data to a commandline encoder (oggenc2.exe), that way you don't have to deal with the Ogg Vorbis SDK at all. And it can be easily adapted to support other commandline encoders.

OGG audio recorder

Reply #4
thks for all the replies.. the main problem is i'm new to dealing with audio files & even newer to VC & commandline programming... really need help with starting with the basics...

i've gotten the oggenc2.3 command line Ogg Vorbis encoder but i'm stuck with how to start converting my .wav files.... when i click on the .exe commad line encoder file, the DOS pop-up flashes across the screen and nothing else happens... is there anyway i can program in VC to pass my .wav files to the encoder and get the ogg files?

is there any website that explains the basic stuff ? something that explains how i even get started ... eg. which libs i need, what i need to compile & how i can pass my .wav files to the encoder?