[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 12-23-2005, 09:06 AM   #1 (permalink)
NamePros Member
 
Join Date: Aug 2005
Posts: 109
78.00 NP$ (Donate)

JustinWI is an unknown quantity at this point


Executing Linux files from PHP

I have installed ffmpeg on my VPS so I can encode movies to FLV on the fly. It runs fine from the command line, but not when calling from php. I have set the permissions on the file and folder to 777 but it still doesnt work. I have also tried setting the ffmpeg to 777 and that didnt change anything. The only output I can get from php about an error is "1". I am current using system() but tried exec() as well. Here is my code :
PHP Code:
$vid2flv = system('ffmpeg -i /home/mctv/www/files/video/$uploadfile -acodec mp3 -ar $samprate -ab $bitrate -f flv -s 320x240 -aspect 4:3 -y /home/mctv/www/files/video/$flvFile', $err_msg);
I have copied that whole command line to my SSH and replaced it with the actual numbers passed through and the command will run.
Thanks
JustinWI is offline  
Old 12-23-2005, 10:22 AM   #2 (permalink)
Eating Pie
 
iNod's Avatar
 
Join Date: Nov 2004
Location: Canada
Posts: 2,289
126.05 NP$ (Donate)

iNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud of

Special Olympics AIDS/HIV Cystic Fibrosis Save The Children Baby Health Cystic Fibrosis
Do you have PHP Safe on?

Try shell_exec

iNod.
__________________
I feel old.
iNod is offline  
Old 12-23-2005, 11:41 AM   #3 (permalink)
NamePros Member
 
Join Date: Aug 2005
Posts: 109
78.00 NP$ (Donate)

JustinWI is an unknown quantity at this point


I actually just messed with it a little more and got it to work. I had to add '/usr/local/bin/' before 'ffmpeg...'.

Do any of you guys know a workaround to get ffmpeg to read WMV9 and above?

Thanks
(rep added)
JustinWI is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Great Scripts for Sale With Resale Rights! Zeeble Scripts For Sale 20 01-04-2006 01:39 AM
Googlism - What does google think of you? deadserious The Break Room 55 12-15-2005 09:09 AM

Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 02:47 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85