<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/jqvid/home/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 26 Oct 2011 08:40:20 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jqvid/home/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -42,25 +42,50 @@
 * **unmute** - triggered when the volume changes from 0
 
 
- 
-It the targeted &amp;lt;select&amp;gt; element is being replaced by a custom div-based html markup that shares the original element's attributes (class,id...). 
-The newly returned element behaves the same (from a jquery api point of view) : you can still access it's value through jquery's `.val` method.  
-The jSelectBox api is binded to every element on wich the plugin is called. It can be accessed through jquery's `.data` method : 
-
+Besides event-triggering, this plugin offers an api. The jQvid api is binded to every element on wich the plugin is called. It can be accessed through jquery's `.data` method : 
+
     var api = $('video_wrapper').data('jqvidApi');
-This api reveals some usefull methods that ease the video manipulation:  
-
-* destroy()  
-* reinitialise(options)  
-* getSelectedValue()  
-* getSelectedText()  
-* getSelectedIndex()  
-* selectValue(val)
-* selectIndex(n)
-* expandList()
-* collapseList()
-* toggleList()
-
+This api reveals some usefull methods that ease the video interaction &amp; manipulation:  
+
+* **play**
+	* desc : it starts to play/resumes the video and triggers the play.jqvid event
+* **pause**
+	* desc : it pauses the video and triggers the pause.jqvid event
+* **togglePlay**
+	* desc : toggles the pause/play state of the video while triggering the associated events.
+* **seekToTime**
+	* desc : it moves the videoframe to the frame that correspons with the provided time as argument.
+	* arguments : number representing the seconds that the player should seek the frame for.
+	* obs : if it's a negative number, the video will seek at 0 seconds, and if it's a number higher than the video length (in seconds), the player will seek to the end of the video.
+* **seekToPercent**
+	* desc : it moves the videoframe to the frame that corresponds to the provided percentage as argument.
+	* arguments : number representing the percentage of the video length to which the player should seek video frames.
+	* obs : the argument's value is trimmed if not in the [0-100] range.
+* **fullScreen**
+	* desc : it resizes the video to the window size and triggers the fullscreen.jqvid event.
+* **normalScreen**
+	* desc : it resizes the video to the initial size from the fullscreen state. It alse triggers the normalscreen.jqvid event.
+* **toggleFullScreen**
+	* desc : toggles the video size (fullscreen/normalscreen) and triggers the associated events.
+* **setVolume**
+	* desc : sets the video volume to the percentige provided as argument and triggers volumechange.jqvid event.
+	* arguments : number representing the percentage of the video volume
+	* obs : the argument's value is trimmed if not in the [0-100] range. Also, the custom volumechange.jqvid event provides 2 more arguments : oldVolume and newVolume.
+* **mute**
+	* desc : mutes the video and triggers the mute.jqvid event.
+* **unMute**
+	* desc : unmutes the video and sets the sound volume to the value before the video had been muted. Also it triggers the unmute.jqvid event.
+	* obs : The custom unmute.jqvid event provides one more arguments : oldVolume.
+* **toggleMute**
+	* desc : toggles the video sound (mute/unmute) and triggers the associated events.
+* **loadVideo**
+	* desc : loads the video provided as first argument in the player and triggers the loadvideo.jqvid event.
+	* arguments : (source [,type]). The source represents the video path (full or relative) and the second (optional) argument provides the video type (such as "video/mp4" or "video/ogg")
+	* obs : Usefull when using playlists.
+	* usage :
+	 $('#video_wrapper').data('jqvidApi').loadVideo('path_to_video','video_type');
+* **resetControls**
+	* desc : resets the controls to their original state (progress=&gt;0,play_btn=&gt;paused) and triggers the controlsreset.jqvid event.
 
 developed by [[project_admins]]
 download here : [[download_button]]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:40:20 -0000</pubDate><guid>https://sourceforge.net383b20a488d2553d0d9108b78630864c1fef076d</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -21,25 +21,25 @@
 * **normalscreen** - triggered when the video is going from full screen in normal screen mode
 * **loadvideo** - triggered when the video's src has changed
 * **loadstart** - triggered when the video has started to load
-* **loadedmetadata** - 
-* **loadeddata** - 
-* **buffered** - 
-* **waiting** - 
-* **durationchange** - 
-* **timeupdate** - 
-* **progress** - 
-* **ratechange** - 
-* **seeking** - 
-* **seeked** - 
-* **ended** - 
-* **canplay** - 
-* **canplaythrough** - 
-* **play** - 
-* **playing** - 
-* **pause** - 
-* **volumechange** - 
-* **mute** - 
-* **unmute** - 
+* **loadedmetadata** - triggered when the metadata has been loaded (after this point you we can now know the full size/time of the video)
+* **loadeddata** - triggered when the video can render the media data at the current playback position for the first time
+* **buffered** - triggered when the video buffers
+* **waiting** - triggered when the video has stopped because the next frame is not available
+* **durationchange** - triggered when the movie duration has changed
+* **timeupdate** - triggered when the current playback position changed as part of normal playback or in an especially interesting way, for example discontinuously
+* **progress** - triggered when the video is showing new content
+* **ratechange** - triggered when the video rate has changed (normal is 1... eq: 1.2=faster)
+* **seeking** - triggered when the video is seeking and the operation takes enough time that it can send the event
+* **seeked** - triggered when the seeking has stopped
+* **ended** - triggered when the video reached the end
+* **canplay** - triggered  the video can resume playback of the media data, but estimates that if playback were to be started now, the media resource could not be rendered at the current playback rate up to its end without having to stop for further buffering of content
+* **canplaythrough** - triggered when the player can play the whole video (at current playback rate) withouth stopping 
+* **play** - triggered when the movie starts to play
+* **playing** - triggered when the video is restarting to play (after a pause or a lack of media data)
+* **pause** - triggered when the video is being paused
+* **volumechange** - triggered when the volume changes
+* **mute** - triggered when the volume changes to 0
+* **unmute** - triggered when the volume changes from 0
 
 
  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:33:44 -0000</pubDate><guid>https://sourceforge.net1cb429135a7ac89f579d3453898e1dfdcdd8a931</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -1,26 +1,26 @@
-Qvid.js - cross browser html5 video player
+jQvid.js - cross browser html5 video player
 ==========================================
 
 Very easy to use &amp; integrate in own app :  
 
     $('video_wrapper').jQvid(options);
     /*
     options = {
         optionName : optionValue,
         // and so on
     }
     */
 
 The plugin dynamically creates the video element and appends it into the selected target (wrapper). It provides default controls that can be customized with css, but you can specify your own html markup for the controls by providing an external (yet in the same domain) html file.  
 The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation :  
 
-* **initialise** - 
-* **controlsreset** - 
-* **resize** - 
-* **fullscreen** - 
-* **normalscreen** - 
-* **loadstart** - 
-* **loadvideo** - 
+* **initialise** - triggered when the player is initialized
+* **controlsreset** - triggered when the html controls are reset (to "fabric" settings such as volume to default) 
+* **resize** - triggered when the player is resized (on fullscreen toggles and aspectratio resizes)
+* **fullscreen** - triggered when the video is going from normal screen in full screen mode
+* **normalscreen** - triggered when the video is going from full screen in normal screen mode
+* **loadvideo** - triggered when the video's src has changed
+* **loadstart** - triggered when the video has started to load
 * **loadedmetadata** - 
 * **loadeddata** - 
 * **buffered** - 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:22:24 -0000</pubDate><guid>https://sourceforge.net7ea46e0a8533d403f3a9f240b8ab1daa61a8336e</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -14,32 +14,32 @@
 The plugin dynamically creates the video element and appends it into the selected target (wrapper). It provides default controls that can be customized with css, but you can specify your own html markup for the controls by providing an external (yet in the same domain) html file.  
 The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation :  
 
-* **initialise** - triggered when the player has been initialised
-* controlsreset - triggered
-* resize - 
-* fullscreen - 
-* normalscreen - 
-* loadstart - 
-* loadvideo - 
-* loadedmetadata - 
-* loadeddata - 
-* buffered - 
-* waiting - 
-* durationchange - 
-* timeupdate - 
-* progress - 
-* ratechange - 
-* seeking - 
-* seeked - 
-* ended - 
-* canplay - 
-* canplaythrough - 
-* play - 
-* playing - 
-* pause - 
-* volumechange - 
-* mute - 
-* unmute - 
+* **initialise** - 
+* **controlsreset** - 
+* **resize** - 
+* **fullscreen** - 
+* **normalscreen** - 
+* **loadstart** - 
+* **loadvideo** - 
+* **loadedmetadata** - 
+* **loadeddata** - 
+* **buffered** - 
+* **waiting** - 
+* **durationchange** - 
+* **timeupdate** - 
+* **progress** - 
+* **ratechange** - 
+* **seeking** - 
+* **seeked** - 
+* **ended** - 
+* **canplay** - 
+* **canplaythrough** - 
+* **play** - 
+* **playing** - 
+* **pause** - 
+* **volumechange** - 
+* **mute** - 
+* **unmute** - 
 
 
  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:11:16 -0000</pubDate><guid>https://sourceforge.net5c4fb0dbfacc6c2c59c7b18bdaf4be6b329a1b11</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -14,8 +14,8 @@
 The plugin dynamically creates the video element and appends it into the selected target (wrapper). It provides default controls that can be customized with css, but you can specify your own html markup for the controls by providing an external (yet in the same domain) html file.  
 The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation :  
 
-* initialise - 
-* controlsreset - 
+* **initialise** - triggered when the player has been initialised
+* controlsreset - triggered
 * resize - 
 * fullscreen - 
 * normalscreen - 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:10:24 -0000</pubDate><guid>https://sourceforge.net63f446bf72245fc383e79b13a230403507fd70fc</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -12,7 +12,8 @@
     */
 
 The plugin dynamically creates the video element and appends it into the selected target (wrapper). It provides default controls that can be customized with css, but you can specify your own html markup for the controls by providing an external (yet in the same domain) html file.  
-The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation : 
+The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation :  
+
 * initialise - 
 * controlsreset - 
 * resize - 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:09:21 -0000</pubDate><guid>https://sourceforge.net203cd588924aa2fff0c183e97df884799fe46609</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -11,7 +11,37 @@
     }
     */
 
-The plugin dynamically creates the video element and appends it into the selected target (wrapper).  
+The plugin dynamically creates the video element and appends it into the selected target (wrapper). It provides default controls that can be customized with css, but you can specify your own html markup for the controls by providing an external (yet in the same domain) html file.  
+The player triggers events for any type of action that occurs. All the events are namespaced with the "&lt;i&gt;.jqvid&lt;/i&gt;" namespace. Here's the event list with the proper explanation : 
+* initialise - 
+* controlsreset - 
+* resize - 
+* fullscreen - 
+* normalscreen - 
+* loadstart - 
+* loadvideo - 
+* loadedmetadata - 
+* loadeddata - 
+* buffered - 
+* waiting - 
+* durationchange - 
+* timeupdate - 
+* progress - 
+* ratechange - 
+* seeking - 
+* seeked - 
+* ended - 
+* canplay - 
+* canplaythrough - 
+* play - 
+* playing - 
+* pause - 
+* volumechange - 
+* mute - 
+* unmute - 
+
+
+ 
 It the targeted &amp;lt;select&amp;gt; element is being replaced by a custom div-based html markup that shares the original element's attributes (class,id...). 
 The newly returned element behaves the same (from a jquery api point of view) : you can still access it's value through jquery's `.val` method.  
 The jSelectBox api is binded to every element on wich the plugin is called. It can be accessed through jquery's `.data` method : 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 08:08:57 -0000</pubDate><guid>https://sourceforge.net6d76fb80c63b7a370089ee5a17761641c7739170</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,36 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/jqvid/home/markdown_syntax/) syntax.
+Qvid.js - cross browser html5 video player
+==========================================
+
+Very easy to use &amp; integrate in own app :  
+
+    $('video_wrapper').jQvid(options);
+    /*
+    options = {
+        optionName : optionValue,
+        // and so on
+    }
+    */
+
+The plugin dynamically creates the video element and appends it into the selected target (wrapper).  
+It the targeted &amp;lt;select&amp;gt; element is being replaced by a custom div-based html markup that shares the original element's attributes (class,id...). 
+The newly returned element behaves the same (from a jquery api point of view) : you can still access it's value through jquery's `.val` method.  
+The jSelectBox api is binded to every element on wich the plugin is called. It can be accessed through jquery's `.data` method : 
+
+    var api = $('video_wrapper').data('jqvidApi');
+This api reveals some usefull methods that ease the video manipulation:  
+
+* destroy()  
+* reinitialise(options)  
+* getSelectedValue()  
+* getSelectedText()  
+* getSelectedIndex()  
+* selectValue(val)
+* selectIndex(n)
+* expandList()
+* collapseList()
+* toggleList()
+
+
+developed by [[project_admins]]
+download here : [[download_button]]
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Wed, 26 Oct 2011 07:54:08 -0000</pubDate><guid>https://sourceforge.netc7c30ed6649f0209ede152de63ec56f4c4bc87de</guid></item><item><title>WikiPage Home modified by bogdan</title><link>https://sourceforge.net/p/jqvid/home/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/jqvid/home/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bogdan</dc:creator><pubDate>Tue, 25 Oct 2011 06:57:04 -0000</pubDate><guid>https://sourceforge.net9d926bda697416f6151701c4808431e2ce673575</guid></item></channel></rss>