Questions tagged [riff]

RIFF(Resource Interchange File Format) is a generic file container format for storing data in tagged chunks. It is primarily used to store multimedia such as sound and video, though it may also be used to store any arbitrary data.

RIFF(Resource Interchange File Format) is a generic file container format for storing data in tagged chunks. It is primarily used to store multimedia such as sound and video, though it may also be used to store any arbitrary data.

More information at http://en.wikipedia.org/wiki/Resource_Interchange_File_Format

51 questions
0
votes
1 answer

Can 8-bit (bits per sample) PCM WAV files contain more than one channel?

I realized it is bad for me to neglect this thought, because I haven't read anything about number of channels and bits per sample in this light. My reason is that I'm not sure how the samples of 2-channel 8-bit PCM files will look like. Is it 1…
Nogurenn
  • 858
  • 3
  • 11
  • 28
0
votes
1 answer

RIFF AVI RLE different to GDI RLE

I have a basic RIFF AVI made in the early 1990's and I'm tyring to make a basic video player in native VB/C# code. According to the header, it uses the old MS RLE codec. The bitmap header in the AVI indicates it is RLE8 compressed. the is the…
Alex Guerin
  • 2,336
  • 10
  • 36
  • 53
0
votes
1 answer

Loading WAV file with XAudio2

I'm writing a program which I can load and play a WAV file, I'm using XAudio2 library, I started writing it with help from msdn.microsoft.com, and now I have almost exactly copied code from msdn and it still does not work. I don't know where is the…
user3500862
  • 11
  • 1
  • 5
0
votes
1 answer

NegativeArraySizeException when reading a RIFF file

I'm currently working on the Java Multimedia IO Project and was testing the RIFFInputStream, but as I was testing I ran into a NegativeArraySizeException; the following is the output from the debug console; RIFF Stream type: AVI Chunks contained in…
Liam Haworth
  • 848
  • 1
  • 9
  • 27
0
votes
1 answer

Reading AAC audio from RIFF container on iOS

I have a file that is a RIFF container with 3 chunks; RIFF chunk has 'WAVE' identifier. First chunk is 'fmt ', second is 'data', the last is 'eink' (my own chunk). So that file is generated by c# code that use directshow. The audio is encoded in…
DanSkeel
  • 3,853
  • 35
  • 54
-1
votes
1 answer

How to find the Creation time of a .wav file using C++

I am currently working on reading a RIff fmt .wav file using c++. How could I find the date and time the file was created. The only time included in the header is the TimeStamp which represents Seconds since epoch. The following are the parsed RIff…
user17261842
1 2 3
4