-1

I am looking for a Non-Commercial Joomla! extention that will allow me to add videos to articles by uploading them. meaning that when i create the article i press a button ( the same as adding an image) andi can upload a video to the media folder and select it or select from the media.

i browsed through all the extention but they all seem to add videos by various ways but none (that i found) that uploads & inserts in the same place.

Thanks In Advance, Eric

eric.itzhak
  • 15,752
  • 26
  • 89
  • 142

1 Answers1

0

Inserting video into a web page is not a trivial operation. basically, until HTML5 support is more widespread (read universal) there is no video tag. So you need to insert code to load a flash video player. This necessitates that your site have a video player available to it - and unless you've added one, you do not.

Additionally, the html code to embed the flash varies between different browsers. Probably the most common method nowadays is to insert the video player, and specify the media (file) for it to play via javascript. Again this necessitates having the javascript in place and having a div or similar container with a specified 'id' for the javascript to substitute the video into dynamically.

Like I said - this is non-trivial, ie not straightforward.

Withn Joomla the most frequent method of inserting video is via a plugin whereby you embed a 'tag' marked with curly braces which the php substitutes for working html,javascript,flash at runtime. The JCE editor has a button for this - I think it may be an extension. Alternatively AllVideos, and AllVideos reloaded are well established plugins that allow insertion of videos from local website or from remote sites (Amazon S3 servers, YouTube, Vimeo, etc).

The standard Media Manager, and the file manager screens (such as when you click to insert images) should allow uploading of videos, but you may have to add the correct mime types within the global configuration screens.

I'm sure the Joomla Extensions Directory (JED) should have many other methods available too: http://extensions.joomla.org/

Dean Marshall
  • 1,825
  • 1
  • 11
  • 10
  • Thanks i found AllVideos and realised that's the best i'm gonna find. Now while we are at it, do you happend to know why the AllVideos flash player at full-screen shows :"To exit press ESC" in hebrew and upside down? – eric.itzhak Dec 03 '11 at 16:38
  • I'm afraid I haven't got a scooby's but I know a man who will. On second thoughts you seem to have already found them - my search for your error message found your post from tonight over on the JoomlaWorks forum. Google are getting fast aren't they? I'm sure Fotis and his team will get you sorted. – Dean Marshall Dec 03 '11 at 21:40