跳过转换步骤
所以我的 php 文件中有一个脚本,它接受 .wav 文件并将其转换为 .mp3
exec( "lame ".SOMELOCATION."/".$file.".wav ".LOCATION."/{$Sub}/".$file.".mp3 ");
我现在需要从 url 获取该文件并将其保存到上面列出的位置
例如:
它将像这样输入
http://someurl.com/audio/something.mp3
并且我需要将该 mp3 下载并保存在
LOCATION."/{$Sub}/".$file.".mp3
So i have a script in my php file that takes a .wav file and converts it to a .mp3
exec( "lame ".SOMELOCATION."/".$file.".wav ".LOCATION."/{$Sub}/".$file.".mp3 ");
I now need to take the file from the url and save it to the location listed above
For example:
it will come in like this
http://someurl.com/audio/something.mp3
and i need to take that mp3 and download it and save it in
LOCATION."/{$Sub}/".$file.".mp3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 URL 中获取子目录:`http://example.com/?Sub=subdir
Take the subdirectory from the URL: `http://example.com/?Sub=subdir