Thread: Open an audio file using c language

  1. #1
    Registered User
    Join Date
    Sep 2013
    Posts
    1

    Red face Open an audio file using c language

    Hai friends,
    i Dont know how to open an audio file using c. please help me to write a code to open an audio file. Thank u in advance.

  2. #2
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    what have you tried so far? we won't write it for you.
    What can this strange device be?
    When I touch it, it gives forth a sound
    It's got wires that vibrate and give music
    What can this thing be that I found?

  3. #3
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    Quote Originally Posted by guru lakshmi View Post
    Hai friends,
    i Dont know how to open an audio file using c. please help me to write a code to open an audio file. Thank u in advance.
    what do you mean by open? if you just want to read bytes - audio file is just a binary file - so simple fopen will do.

    if you want to parse it - you need to know the file format. for example wave file format is well defined and there are a lot of samples reading/writing it.

    if you want to actually play the audio - you need to use some OS dependent library for rendering audio.

    if audio is encoded - you would need to use some audio decoder library as well...

    So what exactly you want to do?
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Open source for UTF8 to Unicode in C language
    By sanddune008 in forum C Programming
    Replies: 1
    Last Post: 03-08-2013, 08:50 AM
  2. open audio files
    By akshaykakar in forum C Programming
    Replies: 2
    Last Post: 10-21-2009, 01:11 PM
  3. Audio File
    By IceBall in forum Tech Board
    Replies: 4
    Last Post: 08-14-2003, 10:36 AM
  4. Audio CD File Extension
    By sean in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 02-17-2003, 10:47 PM
  5. Playing an Audio Wav File
    By Robert_Ingleby in forum C++ Programming
    Replies: 2
    Last Post: 12-02-2001, 06:29 PM