<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
        <title>Jaris FLV Player</title>
        <description></description>
        <link>http://jarisflvplayer.org/</link>
        <lastBuildDate>Thu, 23 May 2013 11:02:33 -0400</lastBuildDate>

                <item>
    	<title>Source code now hosted on GitHub</title>
        <description>Hi to everyone that visits this site, it has been some time since I lastposted any news here. I have been working in other things so there hasn'tbeen any new activity . I'm writing to let everyone know that I have moved the source code ...</description>
        <link>http://jarisflvplayer.org/admin/blog/source-code-now-hosted-on-github</link>
        <pubDate>Wed, 20 Mar 2013 11:04:39 -0400</pubDate>
    </item>
                <item>
    	<title>test</title>
        <description></description>
        <link>http://jarisflvplayer.org/test2</link>
        <pubDate>Fri, 09 Sep 2011 14:48:47 -0400</pubDate>
    </item>
                <item>
    	<title>Contact Us</title>
        <description></description>
        <link>http://jarisflvplayer.org/contact</link>
        <pubDate>Tue, 06 Sep 2011 10:11:02 -0400</pubDate>
    </item>
                <item>
    	<title>Demo: New Player Controls</title>
        <description>You can give the player the look that better suits your taste with the feature of custom color controls.Original colors
White tones
Blue tones ...</description>
        <link>http://jarisflvplayer.org/demo/new-controls</link>
        <pubDate>Sat, 27 Aug 2011 15:18:50 -0400</pubDate>
    </item>
                <item>
    	<title>Jaris Version 2.0.15</title>
        <description>This new version adds a new theme:* New player controls* New flashvar controltype (0=old, 1=new) to indicate the which controls to use* New flashvar controlsize for new controls only* New flashvar seekcolor for ...</description>
        <link>http://jarisflvplayer.org/admin/blog/jaris-version-2015</link>
        <pubDate>Sat, 27 Aug 2011 15:10:36 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript Class Interface</title>
        <description>Just finished a javascript class that serves as an interface to control the player using the jsapi. For download and documentation check the following section: http://jarisflvplayer.org/docs/jsapi ...</description>
        <link>http://jarisflvplayer.org/admin/blog/javascript-class-interface</link>
        <pubDate>Wed, 09 Mar 2011 00:34:17 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: volume</title>
        <description>Changes the volume valueFunction:
/***To lower or raise the volume**@param value float from 0.0 to 1.0*/function volume(value);Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Start playing the videoplayer.play();//Lower the volume by halfplayer.volume(0.5); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/volume</link>
        <pubDate>Wed, 09 Mar 2011 00:09:29 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: seek</title>
        <description>Seek the player to a given position in secondsFunction:
/***Seeks to a given position in seconds**@param time A given value in seconds*/function seek(time);Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Start playing the videoplayer.play();//Seek 30 secondsplayer.seek(30); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/seek</link>
        <pubDate>Wed, 09 Mar 2011 00:06:35 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: pause</title>
        <description>Pauses the playback.Function:
/***To toggle play to pause*/function pause();Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Start playing the videoplayer.play();//Pause the playbackplayer.pause(); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/pause</link>
        <pubDate>Wed, 09 Mar 2011 00:02:58 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: play</title>
        <description>Starts the playbackFunction:
/***To toggle pause to play or start the playback*/function play();Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Start playing the videoplayer.play(); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/play</link>
        <pubDate>Tue, 08 Mar 2011 23:59:40 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: removeListener</title>
        <description>Method to remove an event listener that was added beforeFunction:
/***Removes an event listener**@param eventType One of the events constants found on the JarisFLVPlayer.event object, *or the string "*" to remove every event listener*/function removeListener(eventType);Event types found on the JavaScript.event object:
JarisFLVPlayer.event ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/removeListener</link>
        <pubDate>Tue, 08 Mar 2011 23:56:20 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: addListener</title>
        <description>Method to add functions to listen for player events.Function:
/***Add function to listen for player evebts**@param eventType One of the events constants found on the JarisFLVPlayer.event object.*@param string with the name of the function that is going to listen*/function addListener(eventType, listenerFunction);The ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/addListener</link>
        <pubDate>Tue, 08 Mar 2011 23:18:44 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: getVolume</title>
        <description>Function that checks the current volume valueFunction:
/***To get the current volume value**@return float value from 0.0 to 1.0*/function getVolume();Example:
//Triggers each time the volume is changed.function onVolumeChange(data){//Display current volume valuealert(player.getVolume());}//Initialize the interfaceplayer = new ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/getVolume</link>
        <pubDate>Tue, 08 Mar 2011 23:12:53 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: getBytesLoaded</title>
        <description>Function that gets the amount of bytes currently loadedFunction:
/***To check the bytes loaded**@return The amount of bytes loaded*/function getBytesLoaded();Example:
//Triggers each time the playback has paused or started.function onPlayPause(data){//Display bytes loadedalert(player.getBytesLoaded());}//Initialize the interfaceplayer = ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/getBytesLoaded</link>
        <pubDate>Tue, 08 Mar 2011 23:04:49 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: getCurrentTime</title>
        <description>Function that checks the current playing time in secondsFunction:
/***To check the current playing time**@return The current playing time in seconds.*/function getCurrentTime();Example:
//Triggers each time the playback has paused or started.function onPlayPause(data){//Display current timealert(player.getCurrentTime());}//Initialize the ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/getCurrentTime</link>
        <pubDate>Tue, 08 Mar 2011 23:01:03 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: isPlaying</title>
        <description>Function that checks if the player is playing, duh xD.Function:
/***To check if the player is playing**@return integer 1 for true and 0 for false*/function isPlaying();Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Store the playing status on a variableis_playing = player.isPlaying(); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/isPlaying</link>
        <pubDate>Tue, 08 Mar 2011 22:48:50 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: isBuffering</title>
        <description>Function that checks if the player is buffering.Function:
/***To check if the player is buffering**@return integer 1 for true and 0 for false*/function isBuffering();Example:
//Initialize the interfaceplayer = new JarisFLVPlayer("Id_Of_Player_Object");//Store the buffering status on a variableis_buffering = player.isBuffering(); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/isBuffering</link>
        <pubDate>Tue, 08 Mar 2011 22:40:51 -0400</pubDate>
    </item>
                <item>
    	<title>JavaScript API: Constructor</title>
        <description>Function to initialize the object that interfaces with the flash player.Function:
/***Constructor*@param id The id of the &lt;object&gt; that holds the player*/function JarisFLVPlayer(id);Example:
player = new JarisFLVPlayer("Id_Of_Player_Object"); ...</description>
        <link>http://jarisflvplayer.org/docs/jsapi/constructor</link>
        <pubDate>Tue, 08 Mar 2011 22:32:47 -0400</pubDate>
    </item>
                <item>
    	<title>Documentation: JavaScript API</title>
        <description>To use the java script api of the player we have coded a simple class in javascript that you can download jarisflvplayer.js. Also you need to pass the flash variable jsapi with a value of 1 or true in order to expose the api functions.
1.</description>
        <link>http://jarisflvplayer.org/docs/jsapi</link>
        <pubDate>Tue, 08 Mar 2011 20:05:25 -0400</pubDate>
    </item>
                <item>
    	<title>Jaris Version 2.0.13 Beta</title>
        <description>This new version adds a new feature and fixes a bug, here are the changes:
Implemented loop class 
Added loop functionality by passing loop=true or loop=1 as parameterFixed reported bug "slider will show wrong position" on pseudostreaming seek (Thanks to Adam)
Go to the download section to ...</description>
        <link>http://jarisflvplayer.org/admin/blog/jaris-version-2013-beta</link>
        <pubDate>Sun, 06 Mar 2011 17:16:42 -0400</pubDate>
    </item>
</channel>
</rss>
