Hi Leute,
ich bin langsam am verzweifeln. Ich nehme eine WAV Datei auf, klappt auch wunderbar, nur will sie der MediaPlayer nicht abspielen. RealPlayer hat hingegen keine Probleme. Ich hab jetzt schon das halbe Internet durchforstet, aber komme nicht recht weiter.
Quelltext
1: 2: 3: 4: 5: 6: 7: 8: 9:
| mciSendString('OPEN NEW TYPE WAVEAUDIO ALIAS mysound', nil, 0, Handle); mciSendString('SET mysound TIME FORMAT MS FORMAT TAG PCM ' + // set time 'ALIGNMENT 4096 '+ 'BITSPERSAMPLE 16 ' + // 16 Bit 'CHANNELS 2 ' + // STEREO 'SAMPLESPERSEC 44100 '+ // 44.1 KHz 'BYTESPERSEC 176400', // 176400 nil, 0, Handle); mciSendString('RECORD mysound', nil, 0, Handle); |
Es soll also Stereosound mit 16Bit, 44.1kHz aufgenommen werden... mir sind die Einstellungen für ALIGNMENT und das TIME FORMAT nicht so ganz klar. Ich hab da ewig herumexperimentiert, doch will der MediaPlayer einfach nicht.
Habt Ihr eine Idee? Wäre super...
Ciao
Michael