Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web サイトに 3gpp オーディオ ファイルをアップロードしようとしていますか? それを行う簡単な方法はありますか?そして、その 3gpp ファイルを mp3 ファイルに変換する方法はありますか? 私を助けてください
それはサーバーによって異なります。Linux マシンを使用している場合は、変換に ffmpeg を使用できます。
ffmpeg -i input.3gp -acodec mp3 -ar 22050 -f wav output.mp3
ファイルをアップロードして、このコマンドをトリガーするだけです。そうしないと、サーバー アプリケーション自体がそれを処理する必要があります。