Php ile 2 ses dosyasını birleştirp indirmek.
<?php
file_put_contents(
'yeni.mp3',
file_get_contents('ses1.mp3') . file_get_contents('ses2.mp3')
);
header('Content-type: audio/x-mpequrl');
header('Content-disposition: attachment; filename=yeni.mp3');
readfile('ses1.mp3');
readfile('ses2.mp3');
?>
Ses dosyalarını bileştirme PHP
4/
5
Oleh
Adsız