<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: ffmpeg sample code</title>
	<atom:link href="http://www.sajithmr.me/ffmpeg-sample-code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me/ffmpeg-sample-code</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 04:51:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: velu</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-362828</link>
		<dc:creator>velu</dc:creator>
		<pubDate>Wed, 04 Jan 2012 07:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-362828</guid>
		<description>i use win xp run ffmpeg successfuly in dos but in php exec not working plz help me</description>
		<content:encoded><![CDATA[<p>i use win xp run ffmpeg successfuly in dos but in php exec not working plz help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sajith M.R</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-285520</link>
		<dc:creator>Sajith M.R</dc:creator>
		<pubDate>Tue, 27 Sep 2011 16:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-285520</guid>
		<description>While running form PHP you need to provide full path, eg: C:/Windows/ffmpeg.exe rather than just exec(&#039;ffmpeg &#039;)</description>
		<content:encoded><![CDATA[<p>While running form PHP you need to provide full path, eg: C:/Windows/ffmpeg.exe rather than just exec(&#8216;ffmpeg &#8216;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagan</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-280363</link>
		<dc:creator>Jagan</dc:creator>
		<pubDate>Fri, 23 Sep 2011 03:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-280363</guid>
		<description>Hai Mr.Sajith. I successfully installed ffmpeg libraries in my windows machine. It is working in my command prompt but the problem is when i&#039;m trying to access it via php it shows error &#039;like error in loading ffmpeg while executing the below line. plz help me
extension_loaded(&#039;ffmpeg&#039;) or die(&#039;Error in loading ffmpeg&#039;);</description>
		<content:encoded><![CDATA[<p>Hai Mr.Sajith. I successfully installed ffmpeg libraries in my windows machine. It is working in my command prompt but the problem is when i&#8217;m trying to access it via php it shows error &#8216;like error in loading ffmpeg while executing the below line. plz help me<br />
extension_loaded(&#8216;ffmpeg&#8217;) or die(&#8216;Error in loading ffmpeg&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shah Zeb</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-215155</link>
		<dc:creator>Shah Zeb</dc:creator>
		<pubDate>Wed, 03 Aug 2011 21:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-215155</guid>
		<description>Hi Sajith M.R,
       My project is working fine locally on windows. But when I run the project on linux dedicated server, the converted flv video has no sound. And when I add the &quot;-acodec mp3&quot; line in ffmpeg command, ffmpeg coverts no video. ffmpeg only converts the video with no audio when there is no -vcodec and -acodec lines present in commands. I contacted my hosting company, they says that libmp3lame is enabled. Can you tell me what is the problem, why there is no audio in converted video. And also why ffmpeg doesn&#039;t generates the output flv, if there is -acodec line present in ffmpeg command.

Your help is highly appreciated! THanks</description>
		<content:encoded><![CDATA[<p>Hi Sajith M.R,<br />
       My project is working fine locally on windows. But when I run the project on linux dedicated server, the converted flv video has no sound. And when I add the &#8220;-acodec mp3&#8243; line in ffmpeg command, ffmpeg coverts no video. ffmpeg only converts the video with no audio when there is no -vcodec and -acodec lines present in commands. I contacted my hosting company, they says that libmp3lame is enabled. Can you tell me what is the problem, why there is no audio in converted video. And also why ffmpeg doesn&#8217;t generates the output flv, if there is -acodec line present in ffmpeg command.</p>
<p>Your help is highly appreciated! THanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shah Zeb</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-214338</link>
		<dc:creator>Shah Zeb</dc:creator>
		<pubDate>Wed, 03 Aug 2011 14:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-214338</guid>
		<description>@ Nilesh

Edit your php.ini configuration file

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 6000     ; Maximum execution time of each script, in seconds
max_input_time = 6000	; Maximum amount of time each script may spend parsing request data
memory_limit = 99M      ; Maximum amount of memory a script may consume (16MB)


;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;


; Maximum size of POST data that PHP will accept.
post_max_size = 1024M


;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Maximum allowed size for uploaded files.
upload_max_filesize = 1024M</description>
		<content:encoded><![CDATA[<p>@ Nilesh</p>
<p>Edit your php.ini configuration file</p>
<p>;;;;;;;;;;;;;;;;;;;<br />
; Resource Limits ;<br />
;;;;;;;;;;;;;;;;;;;</p>
<p>max_execution_time = 6000     ; Maximum execution time of each script, in seconds<br />
max_input_time = 6000	; Maximum amount of time each script may spend parsing request data<br />
memory_limit = 99M      ; Maximum amount of memory a script may consume (16MB)</p>
<p>;;;;;;;;;;;;;;;;;<br />
; Data Handling ;<br />
;;;;;;;;;;;;;;;;;</p>
<p>; Maximum size of POST data that PHP will accept.<br />
post_max_size = 1024M</p>
<p>;;;;;;;;;;;;;;;;<br />
; File Uploads ;<br />
;;;;;;;;;;;;;;;;</p>
<p>; Maximum allowed size for uploaded files.<br />
upload_max_filesize = 1024M</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: attish</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-176949</link>
		<dc:creator>attish</dc:creator>
		<pubDate>Tue, 24 May 2011 12:47:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-176949</guid>
		<description>bhai sajit M.R thanks for the code but this procedure is only for linux. this is not work in php hwo to convert file in php ?? any user ask abt that question u dont reply it . why ??? if u have no idea abt that simple says i have no idea . but u dont reply it becuase u feel u r a loser ..............................</description>
		<content:encoded><![CDATA[<p>bhai sajit M.R thanks for the code but this procedure is only for linux. this is not work in php hwo to convert file in php ?? any user ask abt that question u dont reply it . why ??? if u have no idea abt that simple says i have no idea . but u dont reply it becuase u feel u r a loser &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muthuraj</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-172275</link>
		<dc:creator>Muthuraj</dc:creator>
		<pubDate>Mon, 02 May 2011 15:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-172275</guid>
		<description>Hi Mr.Sajith,

I a newbie to ffmpeg after a long battle i have successfully installed ffmepg in my linux server, but now i need to join two or more flv video files using ffmpeg (by using php coding not in command prompt), can you please guide me to do this activity?

Thanks in advance, looking forward to hear from you.

Thanks &amp; Regards,
Muthuraj S</description>
		<content:encoded><![CDATA[<p>Hi Mr.Sajith,</p>
<p>I a newbie to ffmpeg after a long battle i have successfully installed ffmepg in my linux server, but now i need to join two or more flv video files using ffmpeg (by using php coding not in command prompt), can you please guide me to do this activity?</p>
<p>Thanks in advance, looking forward to hear from you.</p>
<p>Thanks &amp; Regards,<br />
Muthuraj S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilesh</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-171548</link>
		<dc:creator>Nilesh</dc:creator>
		<pubDate>Fri, 29 Apr 2011 12:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-171548</guid>
		<description>Dear Sajith,

We are developing video website in house. We have video player that support only .flv file. so, we find out php script to convert all other format video file to .FLV and its running nice if, the .avi. mpg etc file size is small. Once, i try to upload big files like 50 mb, 80 mb then its not convert.

If, you want to see the php script then please let us know.

We can upload only 10 MB not more then. Please help soon.

Can you please help me here?

Thanks,</description>
		<content:encoded><![CDATA[<p>Dear Sajith,</p>
<p>We are developing video website in house. We have video player that support only .flv file. so, we find out php script to convert all other format video file to .FLV and its running nice if, the .avi. mpg etc file size is small. Once, i try to upload big files like 50 mb, 80 mb then its not convert.</p>
<p>If, you want to see the php script then please let us know.</p>
<p>We can upload only 10 MB not more then. Please help soon.</p>
<p>Can you please help me here?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilesh</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-171547</link>
		<dc:creator>Nilesh</dc:creator>
		<pubDate>Fri, 29 Apr 2011 12:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-171547</guid>
		<description>Dear Sajith,

We are developing video website in house. We have video player that support only .flv file. so, we find out php script to convert all other format video file to .FLV and its running nice if, the .avi. mpg etc file size is small. Once, i try to upload big files like 50 mb, 80 mb then its not convert.

We can upload only 10 MB not more then. Please help soon.

Can you please help me here?

Thanks,</description>
		<content:encoded><![CDATA[<p>Dear Sajith,</p>
<p>We are developing video website in house. We have video player that support only .flv file. so, we find out php script to convert all other format video file to .FLV and its running nice if, the .avi. mpg etc file size is small. Once, i try to upload big files like 50 mb, 80 mb then its not convert.</p>
<p>We can upload only 10 MB not more then. Please help soon.</p>
<p>Can you please help me here?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandhirasegaran.M</title>
		<link>http://www.sajithmr.me/ffmpeg-sample-code/comment-page-1#comment-171088</link>
		<dc:creator>Sandhirasegaran.M</dc:creator>
		<pubDate>Thu, 28 Apr 2011 09:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/?p=10#comment-171088</guid>
		<description>The way i have install ffmpeg as follows,

1. Copied avcodec-51.dll, avformat-51.dll, avutil-49.dll and pthreadGC2.dll to windows/system32 directory.

2. Copied php_ffmpeg.dll to /php/ext directory.

3. Downloaded ffmpeg.exe and ffplay.exe and copied in a directory.

4. Added following code in php.ini.

extension=php_ffmpeg.dll

then restarted apache.


Above install is it enough for video format conversion.

Please guide me to complete my project ( Video library management )

Thanks in advance</description>
		<content:encoded><![CDATA[<p>The way i have install ffmpeg as follows,</p>
<p>1. Copied avcodec-51.dll, avformat-51.dll, avutil-49.dll and pthreadGC2.dll to windows/system32 directory.</p>
<p>2. Copied php_ffmpeg.dll to /php/ext directory.</p>
<p>3. Downloaded ffmpeg.exe and ffplay.exe and copied in a directory.</p>
<p>4. Added following code in php.ini.</p>
<p>extension=php_ffmpeg.dll</p>
<p>then restarted apache.</p>
<p>Above install is it enough for video format conversion.</p>
<p>Please guide me to complete my project ( Video library management )</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

