<?php
$x = json_decode(file_get_contents('php://input'));
// [ключ, текст]
$qs = http_build_query(array("format" => "mp3","lang" => "ru-RU","speaker" => "jane","key" => $x[0],"emotion" => "good", "text" => $x[1])); // параметры запроса
$ctx = stream_context_create(array("http"=>array("method"=>"GET","header"=>"Referer: \r\n")));
$soundfile = file_get_contents("https://tts.voicetech.yandex.net/generate?".$qs, false, $ctx); // запрос на генерацию mp3 файла
file_put_contents('1.mp3',$soundfile); //сохраняю
echo(base64_encode($soundfile));
?>