eee Client Регистрация 04.06.2018 Сообщения 134 Благодарностей 31 Баллы 28 10.12.2021 #1 Как декодировать base64 в аудио (в .ogg или .mp3) может кто знает
eee Client Регистрация 04.06.2018 Сообщения 134 Благодарностей 31 Баллы 28 11.12.2021 #2 решено C#: string audio_path = project.Variables["audio_path"].Value; string base64str = project.Variables["base64"].Value; File.WriteAllBytes(audio_path, Convert.FromBase64String(base64str)); где audio_path = c:\test.wav Реакции: Sardol, Shogo и nicanil
решено C#: string audio_path = project.Variables["audio_path"].Value; string base64str = project.Variables["base64"].Value; File.WriteAllBytes(audio_path, Convert.FromBase64String(base64str)); где audio_path = c:\test.wav