CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2008
    Posts
    1

    Sound, opening and editing

    Hello, I'd like to know if any of you know how to open soundfiles and reading them instead of just loading them as actual sounds. The programming language doesn't really matter (.net wins), as long as there is a way to open up the file, look at the data, and edit them. Another thing: Is there a guide somewhere about the structure about fileformats? would be kinda helpful too.

  2. #2

    Re: Sound, opening and editing

    Well, I'm not sure how to edit sound files, nor what analysis/changes can be made to them without opening them as sound files.

    The first step I would suggest however is to look at the file in a hex editor. On an mp3 for example this gives you the option to edit the ID3 and ID3v2 tags. Although be careful of how big each field is.

    I think you will find information about the file format and such in other sound files.

  3. #3
    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    3,654

    Re: Sound, opening and editing

    Has google been down? Searching for instance for 'wav file format' gives these and more:
    http://www.sonicspot.com/guide/wavefiles.html
    http://ccrma.stanford.edu/CCRMA/Cou...cts/WaveFormat/
    Debugging is twice as hard as writing the code in the first place.
    Therefore, if you write the code as cleverly as possible, you are, by
    definition, not smart enough to debug it.
    - Brian W. Kernighan

    To enhance your chance's of getting an answer be sure to read
    http://www.codeguru.com/forum/announ...nouncementid=6
    and http://www.codeguru.com/forum/showthread.php?t=366302 before posting

    Refresh your memory on formatting tags here
    http://www.codeguru.com/forum/misc.php?do=bbcode

    Get your free MS compiler here
    https://visualstudio.microsoft.com/vs

  4. #4

    Re: Sound, opening and editing

    Has google been down?
    lol!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured