michalstocki/FlashWavRecorder
Hi, How to put the FWRecorder.getBase64() string convert wav files in php ?
Offen
#41 geöffnet am 26.11.2014
help wanted
Repository-Metriken
- Stars
- (241 Sterne)
- PR-Merge-Metriken
- (Keine gemergten PRs in 30 T)
Beschreibung
hi friends, try html form post FWRecorder.getBase64() string
PHP:
$fileBase64 = str_replace('data:audio/wav;base64,', '', $_POST['Base64']);
$decoded = base64_decode($fileBase64 );
file_put_contents('test.wav', $decoded);
but the test.wav can't play, help ~ thanks very much!