<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site I Love ColdFusion</title><link>http://johnfallen.instantspot.com</link><description>ColdFusion Is Great</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by I Love ColdFusion</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sat, 07 Nov 2009 13:54:13 GMT</pubDate><item><title>Again, You Tube Clone So Simple</title><link>http://johnfallen.instantspot.com/blog/2007/05/01/Again-You-Tube-Clone-So-Simple</link><description>&lt;p&gt;  My buddy needed to clone &lt;a href=&quot;http://www.youtube.com/watch?v=PzKGyLh_aIA&quot;&gt;YouTube&lt;/a&gt;  and asked for the the code. Yea, &lt;a href=&quot;http://codeshare.ulatu.com/&quot;&gt;CodeShare&lt;/a&gt; !  &lt;/p&gt;  &lt;p&gt;  So now presented in the &lt;u&gt;&lt;strong&gt;glory&lt;/strong&gt;&lt;/u&gt; of &lt;a href=&quot;http://www.instantspot.com/index.cfm/event/Join&quot;&gt;InstantSpots&lt;/a&gt;  &lt;a href=&quot;http://codeshare.ulatu.com/&quot;&gt;OVER THE TOP COOL CODESHARE&lt;/a&gt; :   &lt;/p&gt;  &lt;p&gt;  Gonna need these applications:   &lt;/p&gt;  &lt;p&gt;  http://ffmpeg.mplayerhq.hu/download.html   &lt;/p&gt;  &lt;p&gt;  http://flowplayer.sourceforge.net/download.html   &lt;/p&gt;  &lt;p&gt;  [codeshare maycfda3]  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.instantspot.com/index.cfm/event/Join&quot;&gt;InstantSpot&lt;/a&gt; , this site ROCKS!  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.youtube.com/watch?v=PzKGyLh_aIA&quot;&gt;Funny video&lt;/a&gt; : http://www.youtube.com/watch?v=PzKGyLh_aIA  &lt;/p&gt;  </description><pubDate>Tue, 01 May 2007 23:36:37 GMT</pubDate><guid>http://johnfallen.instantspot.com/blog/2007/05/01/Again-You-Tube-Clone-So-Simple</guid><category>YouTube</category></item><item><title>Coldfuions YouTube Clone - Super Easy</title><link>http://johnfallen.instantspot.com/blog/2006/12/04/Coldfuions-YouTube-Clone--Super-Easy</link><description>&lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;I wanted to make a posting solution for my company. Needed to have a YouTube capabilbility. Could have used YouTube, but I didn&amp;rsquo;t want a YouTube bug on stuff clients were going to view.&lt;/font&gt;   &lt;/p&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;I could not believe how TOTALLY easy this was with ColdFusion.&lt;/font&gt;   &lt;/p&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;You need 2 things. &lt;/font&gt;  &lt;/p&gt;  &lt;ol&gt;   &lt;li class=&quot;MsoNormal&quot; style=&quot;margin: auto 0in; tab-stops: list .5in&quot;&gt;&lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;&lt;a href=&quot;http://ffmpeg.mplayerhq.hu/&quot; target=&quot;_blank&quot;&gt;FFMPEG&lt;/a&gt;, this INCREADABLE open source project is a headless application that can accept about 32 different type of video files and can convert them to Flash .flv format&lt;/font&gt;&lt;/li&gt;   &lt;li class=&quot;MsoNormal&quot; style=&quot;margin: auto 0in; tab-stops: list .5in&quot;&gt;&lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;&lt;a href=&quot;http://flowplayer.sourceforge.net/&quot; target=&quot;_blank&quot;&gt;FlowPlayer&lt;/a&gt;, this great open source project is what I use as the player for the .flv. It is cool cause it streams the .flv with out having to &amp;ldquo;compile&amp;rdquo; with Flash 8. You just pass it the .flv name and your all set.&lt;/font&gt;&lt;/li&gt;  &lt;/ol&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;Here is my example using the form and action page example:&lt;/font&gt; &lt;br /&gt;  &lt;br /&gt;  This could be your form uploadVideo_dsp.cmf:&lt;br /&gt;  &amp;lt;!--- start ---&amp;gt;&lt;br /&gt;  &amp;lt;cfset myself = viewState.getValue(&amp;quot;myself&amp;quot;) /&amp;gt; &lt;br /&gt;  &amp;lt;h1&amp;gt;Upload Video&amp;lt;/h1&amp;gt; &lt;br /&gt;  &amp;lt;form action=&amp;quot;uploadVideo_act.cfm&amp;quot; method=&amp;quot;post&amp;quot; enctype=&amp;quot;multipart/form-data&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;table&amp;gt; &lt;br /&gt;  &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;td align=&amp;quot;right&amp;quot;&amp;gt;Video:&amp;lt;/td&amp;gt; &lt;br /&gt;  &amp;lt;td&amp;gt;&amp;lt;input type=&amp;quot;file&amp;quot; name=&amp;quot;video&amp;quot;&amp;gt;&amp;lt;/td&amp;gt; &lt;br /&gt;  &amp;lt;/tr&amp;gt; &lt;br /&gt;  &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt; &lt;br /&gt;  &amp;lt;td&amp;gt;&amp;lt;input type=&amp;quot;submit&amp;quot; Value=&amp;quot;upload&amp;quot;/&amp;gt; &amp;lt;/td&amp;gt; &lt;br /&gt;  &amp;lt;/tr&amp;gt; &lt;br /&gt;  &amp;lt;/table&amp;gt; &lt;br /&gt;  &amp;lt;/form&amp;gt;&lt;br /&gt;  &amp;lt;!--- end ---&amp;gt;&lt;br /&gt;  &lt;br /&gt;  &lt;br /&gt;  &lt;br /&gt;  This would be the uploadVideo_act.cfm code:&lt;br /&gt;  &amp;lt;!--- start ---&amp;gt;&lt;br /&gt;  &amp;lt;cffile &lt;br /&gt;  action=&amp;quot;upload&amp;quot; &lt;br /&gt;  destination = &amp;quot;C:\_FULL_SYSETM_PATH_TO_YOUR_VIDEO_DIR\video\video&amp;quot; nameconflict=&amp;quot;overwrite&amp;quot; &lt;br /&gt;  filefield=&amp;quot;video&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;!--- convert the video with FFMPEG ---&amp;gt; &lt;br /&gt;  &amp;lt;cfexecute name = &amp;quot;C:\_FULL_SYSETM_PATH_TO_YOUR_FFMPEG.EXE_APP\ffmpeg.exe&amp;quot; arguments = &amp;quot;-i C:\_FULL_SYSETM_PATH_TO_YOUR_VIDEO_DIR\video\#cffile.SERVERFILE# -s 320x240 -r 15 -b 2000 -ar 44100 -ab 64 -ac 2 C:\_FULL_SYSETM_PATH_TO_YOUR_VIDEO_DIR\video\#replace(cffile.SERVERFILE, &amp;quot;.&amp;quot;, &amp;quot;&amp;quot;)#.flv&amp;quot; &lt;br /&gt;  outputFile = &amp;quot;C:\&amp;quot; &lt;br /&gt;  timeout = &amp;quot;900&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;/cfexecute&amp;gt; &lt;br /&gt;  &amp;lt;cfset videoName = &amp;quot;#replace(cffile.SERVERFILE, &amp;quot;.&amp;quot;, &amp;quot;&amp;quot;)#.flv&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;!--- insert the name of the file into your database ---&amp;gt;&lt;br /&gt;  &amp;lt;!--- end ---&amp;gt;&lt;br /&gt;  &lt;br /&gt;  &lt;br /&gt;  Then the display page for the video:&lt;br /&gt;  &amp;lt;!--- start ---&amp;gt;&lt;br /&gt;  &amp;lt;!--- get the name of the video from the database, query or something ---&amp;gt;&lt;br /&gt;  &amp;lt;cfset videoName = query.videoName_YouJustGotFromTheDataBase /&amp;gt; &lt;br /&gt;  &amp;lt;object type=&amp;quot;application/x-shockwave-flash&amp;quot; data=&amp;quot;/views/video/FlowPlayer.swf&amp;quot; width=&amp;quot;320&amp;quot; height=&amp;quot;263&amp;quot; id=&amp;quot;FlowPlayer&amp;quot;&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;allowScriptAccess&amp;quot; value=&amp;quot;sameDomain&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;/views/video/FlowPlayer.swf&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;quality&amp;quot; value=&amp;quot;high&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;scale&amp;quot; value=&amp;quot;noScale&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;wmode&amp;quot; value=&amp;quot;transparent&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;param name=&amp;quot;flashvars&amp;quot; value=&amp;quot;videoFile=../../video/#videoName#&amp;quot; /&amp;gt; &lt;br /&gt;  &amp;lt;/object&amp;gt; &lt;br /&gt;  &amp;lt;!--- end ---&amp;gt;  &lt;/p&gt;  &lt;pre&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;1&quot;&gt;How cool is ColdFusion? Really cool, again some non-programmer like myself can make a youTube clone.&lt;/font&gt;  &lt;/p&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p style=&quot;margin: auto 0in&quot; class=&quot;MsoNormal&quot;&gt;  &lt;font face=&quot;Arial&quot; size=&quot;1&quot;&gt;I LOVE CF.&lt;/font&gt;  &lt;/p&gt;  &lt;/pre&gt;  </description><pubDate>Mon, 04 Dec 2006 14:59:09 GMT</pubDate><guid>http://johnfallen.instantspot.com/blog/2006/12/04/Coldfuions-YouTube-Clone--Super-Easy</guid><category>YouTube,ColdFusion</category></item><item><title>Front End Is Trying to Kill Me</title><link>http://johnfallen.instantspot.com/blog/2006/11/21/Front-End-Is-Trying-to-Kill-Me</link><description>&lt;p&gt;  I am TOTALLY tired of the front end nightmare!  &lt;/p&gt;  &lt;p&gt;  Will Flex save me? I just printed out the Flex Store 2_1 and have been reading &lt;a href=&quot;http://weblogs.macromedia.com/swebster/&quot;&gt;Steve Webster&amp;rsquo;s&lt;/a&gt; (how kewl is Webster for the name of a RIA framework creator???!?!?, LOVE IT) &lt;a href=&quot;http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html&quot;&gt;6 part series on Flex Development&lt;/a&gt;. I think Flex will be the answer I have been looking for.  &lt;/p&gt;  &lt;p&gt;  What will Flex save me from? STUPID BROWSERS!!!!! I love how CF makes making the backend easy, but trying to wrestle &lt;a href=&quot;http://developer.yahoo.com/yui/&quot;&gt;Yahoo UI&lt;/a&gt;, &lt;a href=&quot;http://dojotoolkit.org/&quot;&gt;Dojo&lt;/a&gt;, or &lt;a href=&quot;http://script.aculo.us/&quot;&gt;script.aculo.us&lt;/a&gt;, or my fav &lt;a href=&quot;http://www.twinhelix.com/&quot;&gt;TwinHelix&lt;/a&gt; (MOST LIGHT WEIGHT, MOST CROSS BROWSER SUPPORT DTHML LIB out there) to solve some problem that my designers have made every time is getting to be a bummer.  &lt;/p&gt;  &lt;p&gt;  F this HTML stuff, give me something that works. I think it is here.  &lt;/p&gt;  &lt;p&gt;  I think I am going to try to give Reactor Blog a Flex front end.  &lt;/p&gt;  &lt;p&gt;  Ill post code if it comes out.  &lt;/p&gt;  &lt;p&gt;  bigLove to ColdFusion,&lt;br /&gt;  &lt;strong&gt;ja&lt;/strong&gt;  &lt;/p&gt;  </description><pubDate>Tue, 21 Nov 2006 17:41:15 GMT</pubDate><guid>http://johnfallen.instantspot.com/blog/2006/11/21/Front-End-Is-Trying-to-Kill-Me</guid></item></channel></rss>