Finally got FFMpeg-php working on my windows development server. Now i can finally start working on some real movie magic. So far i made some example code to read the Meta from the video and create thumbnails. Not sure how much I will implement it but it feels great just to have it working. Been trying for weeks and it really started to get to me. In the end it was just finding the right match of ffmpeg-php and php. I’ve been using wampserver so it’s kinda hard to get the right php version.
It was more of a can I get it working thing then something I needed. Reading and writing video data is very resource consuming and it’s sheer lunacy to do this on a shared hosting server. Your probably kicked off the server before you finished trans-coding your first video.
Abridged version for the tl;dr crowd: Yay It works! and now what?
Been trying for ages but I finally solved the issue for the crossdomain.xml issue popping up and blocking my Youtube videos. The problem is NOT the crossdomain.xml file. The example feed that is given on the website is not VALID. If you add <title><description> and <link> to the channel element it starts to work.
So it should be like this
| <rss version='2.0' xmlns:media='http://search.yahoo.com/mrss/' xmlns:atom='http://www.w3.org/2005/Atom'> |
| <channel> |
| <title>Website</title> |
| <description>Website Title</description> |
| <link>http://www.website.com</link> |
| <item> |
| <title>Image or Video</title> |
| <link>Image or video Link</link> |
| <media:description></media:description> |
| <media:thumbnail url='url' /> |
| <media:content type='image/jpeg' url='url' /> |
| </item> |
| </channel> |
| </rss> |
Wonder if I can sue for lost time… Oh well.
Of all the sliding frameworks I consider Highslide to be one of the best there is. The other commercial sliders are great too but they alll have one drawback. It’s only free for non-commercial use, so if U run ads on your site you cannot use them without paying the license fee. The open source variants are great but lacking in some very essential features that I need for the interface.
I’ve been trying to find something to remove highslide from the back end so that anyone can use it without purchasing a license but I cant find any alternatives that i like. Maybe i can figure something out.