After 2 days searching, applying and claiming my money back from several hosters I finally found one with ffmpeg and PHP 5.3
It is HostForWeb http://www.hostforweb.com/1873.html
It will cost you $6.36 for 1 month when you use promotional code "autumn"
I think it is a good choice for those who want to test their scripts first before applying for more serious hosting.
Script is working properly.
Thanks for posting this. I get a lot of questions about which web hosting companies offer shared hosting plans that support this script. That's as good a deal as any, and even cheaper than $6.36/mo if you purchase a longer term.
sir i ahve problem i get vps install cento linux then i install ffmepg.exe and pack but my converter not working its file download successfully but not convert it
check it http://mp3-from-youtube.org/
sir i ahve problem i get vps install cento linux then i install ffmepg.exe and pack but my converter not working its file download successfully but not convert it
check it http://mp3-from-youtube.org/
ffmpeg.exe does not work on linux distros (only on Windows)...you have to instead install FFmpeg, ffmpeg-php, and codec packages via SSH (command line interface)...Have you done that?
sir i ahve problem i get vps install cento linux then i install ffmepg.exe and pack but my converter not working its file download successfully but not convert it
check it http://mp3-from-youtube.org/
Hi,
ffmpeg.exe is only for Windows.
Here is a HowTo for ffmpeg, ffmpeg-php and Multimedia Codec for CentOS
I had an idea for a later version.
Users can adjust the volume itself.
Some Youtube videos are very quiet because it would be beneficial that they can increase the volume.
I had an idea for a later version.
Users can adjust the volume itself.
Some Youtube videos are very quiet because it would be beneficial that they can increase the volume.
It's a possibility. I could implement some kind of slider control for volume. The next time I push out a new version, I'll consider this suggestion as well as others.
hiw through this tutorial i install ffmpeg
but when i star this command yum install php-gd php-devel
its show No package php-gd available.
No package php-devel available.
please tell me whats command for install these packages
thanks
Hi. Is there a way to generate mp3 file and to host it to other server (not the server were work the script) with ftp ?
Thanks !
Can be done with cURL. Just goggle it
If you use free version of the script, find "function GenerateMP3($audioQuality)" in YouTubeToMp3Converter.class.php and check out how it works
Hm. All day I search, but i can't find it.
This is my end of exec_string
Code:
-y -acodec libmp3lame -ab 192k $new_name
How to config this $new_name to locale the file to other server with sftp or ftp.
Thanks !
It looks like you are trying to send ffmpeg output to another server directly via the ffmpeg command itself...I don't for sure if this is possible, but a quick Google search yielded the following:
..we specify the output format as "rtp" with the -f option, and instead of a filename, we have a URL that indicates where ffmpeg should send the RTP packets.
-f rtp rtp://127.0.0.1:9014
That seems to imply that you can at least stream ffmpeg output to another server...If you can capture the stream on the receiving server (with ffmpeg as well?) and download it, then I suppose that might work...
3) Instead of trying to stream ffmpeg output directly to another server, you could also save the converted file to the server that executes the command, use PHP's FTP functions to upload the file to another server, and then delete the original converted file