Showing posts with label Website. Show all posts
Showing posts with label Website. Show all posts

Saturday, February 2, 2013

JWPlayer Playlist


Introduction to playlists
A playlist is a sequential list of video, audio or image files. The JW Player supports various scenarios to load, show and interact with such playlists.

An entry in the playlist is not just a URL to the media file, but an object that can have multiple properties, such as file, image, title, description, provider and duration. The more properties are provided, the more information the player can display about that entry.

Playback of a playlist can be customized by two configuration options:
repeat
This option defines what the player should do when an item finishes playback. The default is none (do nothing). It can be set to list (play the next entry until the entire list is done), always (keep on playing the entries forever) and single (re-play the current entry).
shuffle
By default, the player starts a playlist with the first entry and then plays all entries sequentially. Set this option to true to let the player randomly select which entry to play next.

Loading inline JSON playlists
The easiest way to load a playlist is to define it as a JavaScript object (JSON) your HTML code. The JW Embedder allows you to do this (this does not work with the SWFObject and <embed> methods). Here's an example:

<div id="container"></div>

<script type="text/javascript">
    jwplayer("container").setup({
        'flashplayer': 'jwplayer.swf',
        'playlist': [{
            'file': '/videos/video1.mp4',
            'image': '/thumbs/video1.jpg',
            'title': 'The first video'
        },{
            'file': '/videos/video2.mp4',
            'image': '/thumbs/video2.jpg',
            'title': 'The second video'
        }],
        repeat: 'list'
    });
</script>

This code will result in a player with two videos, which will play back to back. In the controlbar, a previous entry and next entry button will appear. These can be used to navigate the playlist.


Jwplayer_playlist_prevnext_buttons


Loading external RSS playlists
Next to inline JSON playlists, it is possible to load external playlists into the JW Player. These external playlists should be in the (widely used) RSS format. The Yahoo! Media extension can be used to include media-specific data in the RSS feed (e.g. <:media:thumbnail> for the preview image).

The RSS feed can simply be loaded into the JW Player by assigning it to the file configuration option. Example:

<div id="container"></div>

<script type="text/javascript">
    jwplayer("container").setup({
        'flashplayer': '/assets/jwplayer.swf',
        'file': '/assets/playlist.xml'
    });
</script>


Note that JW Player supports additional playlist formats in Flash-only mode. For HTML5, the player only supports mediaRSS (as of version 5.7). Since mediaRSS is the industry standard for media playlists too, we strongly recommend you use this format.

Crossdomain loading
An important issue to keep in mind with playlists is that they cannot be loaded cross-domain. In other words, if your player is embedded at http://somesite.com, you cannot load an RSS playlist from http://othersite.com. This restriction applies to both Flash and HTML5. There are workarounds though:

You can place a small (PHP) script on the server that hosts your player to proxy the external playlist. This is the easiest solution which works for both Flash and HTML5.
If you're using only the Flash mode of JW Player (no HTML5), you can place a crossdomain.xml file on the server that hosts the playlists.
A very technical solution for HTML5 is to configure the server that hosts your playlists for Cross-Origin Resource Sharing.

Playlist UI component
In addition to loading/playing a playlist, JW Player can display the list in a dedicated UI component. Users can scroll through the playlist and select the entry they want to view. An entry's image, title, description and duration are shown.

To enable the visual playlist, set the following two options:

playlist.position
Where to place the playlist relative to the video. Can be set to bottom or right.
playlist.size
Width (if position=right) or height (if position=bottom) of the playlist in pixels. The default is 180.
Here's how to set the Playlist UI in combination with an RSS feed:

<div id="container"></div>

<script type="text/javascript">
    jwplayer('container').setup({
        'file': '/assets/playlist.xml',
        'flashplayer': '/assets/player.swf',
        'width': '720',
        'height': '240',
        'playlist.position': 'right',
        'playlist.size': '320'
    });
</script>

The resulting player will look like this, with the playlist located at the right side:


jwplayer_playlist_ui_component

In HTML5 mode, the playlist UI component will be displayed the same way, but note that in iOS, the default scrolling behavior is a bit different, requiring that the user use a two-finger swipe gesture to scroll the playlist. The JW Player includes support for the iScroll JavaScript library, which enables one-finger scrolling in iOS. Simply download the script and include it in your page's <head> tag to enable it:

<head>
  <script type="text/javascript" src="/jwplayer/iscroll-4.js"></script>
</head>

Playlist skinning
JW Player supports a flexible skinning model that allows designers to dramatically change the look of a player. The playlist UI component can also get skinned, and many of the freely available skins do so.

Some skins (e.g. Modieus) assign each playlist entry lots of space, so a large description will fit. In other skins (e.g. Bekle), each playlist entry is very narrow, solely displaying the titles of the entries.

See our skin building guide for in-depth info on skinning the playlist UI component and the player in general.

Plugins & Providers
JW Player features an extensive plugin model for extending its functionality (e.g. for Captioning). The player also supports so-called providers to extend the underlying playback capabilities (e.g. for RTMP Streaming). Both plugins and providers supply configuration options that can be set per playlist entry.

For inline JSON playlists, you can simply insert these options in the HTML code. The options should be prepended with the name of the plugin/provider and a dot. Here's an example configuration that uses the captions plugin, with a dedicated captions file per playlist entry:

<div id="container"></div>

<script type="text/javascript">
    jwplayer("container").setup({
        'flashplayer': 'jwplayer.swf',
        'playlist': [{
            'file': '/videos/video1.mp4',
            'title': 'The first video',
            'captions.file': '/assets/captions1.txt'
        },{
            'file': '/videos/video2.mp4',
            'title': 'The second video',
            'captions.file': '/assets/captions2.txt'
        }],
        plugins: {
            captions: {}
        }
  });
</script>

For external RSS playlists, you can use the jwplayer: extension to insert these custom properties. Here's the same example playlist in RSS format:

<rss version="2.0" xmlns:jwplayer="http://developer.longtailvideo.com/">
<channel>
    <item>
        <title>The first video</title>
        <jwplayer:file>/videos/video1.mp4</jwplayer:file>
        <jwplayer:captions.file>/assets/captions1.txt</jwplayer:captions.file>
    </item>
    <item>
        <title>The second video</title>
        <jwplayer:file>/videos/video2.mp4</jwplayer:file>
        <jwplayer:captions.file>/assets/captions2.txt</jwplayer:captions.file>
    </item>
</channel>
</rss>

Note the top level element, which describes the JW Player namespace using the xmlns:jwplayer attribute. This must be available in order to not break validity.


Keywords: JW Player, Playlist, Blogger, Blogger Tutorial, Blogger Embedding, Blog, Website.


Saturday, March 24, 2012

ADrive


Basic Features

50GB of Online Cloud Storage, for FREE
Our Personal plan provides users with 50GB of FREE online file storage and additional features to backup, share, edit and access your data from anywhere you have Internet access. Simply store your files in your ADrive account & access from any device, at any time.

 Anytime Access to Your Data, Wherever You Are
Conveniently access your ADrive files at any time, from wherever you are. Simply log in to your ADrive account through any device to store, share or edit your files online. All you need is access to the Internet!

 Share Large Files Online
No more emailing large attachments! With our File Sharing feature a unique link is created for the file you wish to share. You can also have an email sent directly from your ADrive account. The unique link to your shared file will be included in the email. Share & unshare files as you wish!

 Edit Your Documents Online
We utilize Zoho® technology with our cloud services to allow users to edit their word processing documents, spreadsheets and presentations online. You can open, edit, and save your documents all from within your ADrive account.

 Remote File Transfer
Now you can instantly transfer files from external websites to your ADrive account remotely. Once stored in your account, the file can be downloaded or shared.

 Easy Search Tool
Having trouble locating a specific file? Use our convenient search tool to find your exact file without browsing through each directory or folder.

 International Character Support
ADrive supports international characters in file names making our service convenient for our international users.

ADrive Website

ADrive Website



Keywords: Tutorial, Tutorials, Blogger Tutorial, Website, Transfer Big Files, Transfer Large Files, Transfer Any Type of File, Transfer Files, Transfer Files Free,Website, Send Large Email Free,Send Large Files,Send Big Files,Share Big Files.

Sunday, March 11, 2012

WeTransfer

WeTransfer is a free platform in transferring large digital files up to 2GB per transfer. We can transfer any type of file - such as presentations, photos, videos, music, documents and more.

All you have to do is insert your email and your friends email in the boxes on the site accordingly.
Then you click to add the files you want to upload.
If you want you can add a message optionally and then just click transfer.
It is the easiest method and unlike all the other methods it has a guaranteed 2GB limit.
Your friend also has 2 Weeks to download the file from the time you send the email.

WeTransfer Website




Keywords:NEWS, Tutorial, Tutorials, Blogger Tutorial, Website, Transfer Big Files, Transfer Large Files, Transfer Any Type of File, Transfer Files, Transfer Files Free,Website, Send Large Email Free,Send Large Files,Send Big Files.

Saturday, March 10, 2012

How embed swf games to a website?

Make sure you have installed Adobe Flash Player on your web browser. And you must find a web server to host your .swf file. Then you can embed the .swf file to your website with HTML code like the code below:

 <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="432" height="330" title="game">
<param name="movie" value="/flash/game.swf" />
<param name="quality" value="high" />
<embed src="/flash/game.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="432" height="330"></embed>
</object>


Keywords:Answers, Questions, Blogger Tutorial, Tutorial, Tutorials, Blogger Embedding, Embed Flash Games, Embed Object,Website.

Infolinks



Infolinks it a great monetization tool

General Information

Website infolinks.com
Blog blog.infolinks.com
Category Advertising
Phone +1-212-201-7481
Email Info@infolinks.com
Employees 32
Founded 2007
Description In - Text Advertising Provider 


Infolinks, Inc. is a leading provider of In-Text Advertising services, working with online content publishers worldwide.

In-Text advertising inserts text link advertisements within the content of websites, usually in the form of double-underline hyperlinks. Upon a hover of the mouse, a floating informational bubble opens with content from an advertiser. If clicked, the visitor is directed to the advertisers landing page and the website owners earn advertising revenue; otherwise, when the mouse is moved away from the hyperlink, the bubble disappears.

Infolinks enables website owners and publishers to benefit from premium In-Text ads. Established in 2007 and backed by Primera Capital, Infolinks leads the industry with an attractive business model and guarantees the highest revenue sharing basis to all partners. Since the companys incorporation, thousands websites have been integrating Infolinks In-Text ads and they take pride in making the process effortless, easy and immediately profitable.

Infolinks In-Text ads complete the contextual web ad experience. Infolinks integration takes 1-minute only as it simply requires the insertion of one line of Infolinks script code into web pages’ html. After that, the entire process is intelligently automated without being held to any long-term commitments.


Keywords:Pay Per Click Advertising, In Text Ads, Contextual Ads, Website, Blog, Blogger, Blogger Tutorial, Ad exchange, Advertisers, Publishers, NEWS