Embedding Multimedia Content in IskWiki!: Difference between revisions

From Iskomunidad
Jc.mac (talk | contribs)
No edit summary
Jc.mac (talk | contribs)
No edit summary
Line 2: Line 2:




'''Flash File From An External Source'''
=='''Flash File From An External Source'''==


  <tt><nowiki>{{#evp:server|file ID|description|alignment|width}}</nowiki></tt>
  <tt><nowiki>{{#evp:server|file ID|description|alignment|width}}</nowiki></tt>
Line 27: Line 27:




'''Uploaded Audio File'''
=='''Uploaded Audio File'''==


sample code to be placed in the entry:
sample code to be placed in the entry:
Line 35: Line 35:
  <tt><nowiki><player>filename (uploaded)</player></nowiki></tt>
  <tt><nowiki><player>filename (uploaded)</player></nowiki></tt>


'''Uploaded Video File'''
=='''Uploaded Video File'''==


  <tt><nowiki><video>Filename</video></nowiki></tt>
  <tt><nowiki><video>Filename</video></nowiki></tt>
Line 75: Line 75:
<br />o .oga (audio)
<br />o .oga (audio)


=='''FLV Playlist'''==
<tt><nowiki>
<flv
  title="Playlist title"
  base="http://some.where.on.the.net/folder/with/files/">
 
  first.flv|First things first
  second.flv|Second to none
  third.flv|Third time's a charm
</flv>
</nowiki></tt>
==See Also==
==See Also==
* [[DILC:audio quality improvement]]
* [[DILC:audio quality improvement]]


[[Category:Tech Support]][[Category:DILC Matters]]
[[Category:Tech Support]][[Category:DILC Matters]]

Revision as of 12:59, 3 August 2011

This page discusses ways of embedding media contents in iskWiki!


Flash File From An External Source

{{#evp:server|file ID|description|alignment|width}}


Where:

  • server is the name of a video sharing service.
  • id is the id of the video to include
  • description (optional) is the caption of the video clips.
  • alignment (optional) is the align of the video clip in the page (it can be "left" or "right")
  • width (optional) is the width in pixels of the viewing area (height will be determined automatically)


example:
Embedding a file from YouTube
http://www.youtube.com/watch?v=sE6E0GwIOIw

Server = youtube
Filename =sE6E0GwIOIw

{{#evp:youtube|sE6E0GwIOIw}}

Supported Video Servers

EmbedVideoPlus supports embedding video content from the following services:


Uploaded Audio File

sample code to be placed in the entry:

<mp3>filename (uploaded or external)</mp3>


for wav files use:

<player>filename (uploaded)</player>

Uploaded Video File

<video>Filename</video>

Parameters

width: width in pixels, defaults to 320
height: width in pixels, defaults to 240
title: video title, default
caption: defaults to the title if not specified. To exclude, set to none
image: preview show inline. Defaults to included clip image
type: mimetype, defaults to auto
download: defaults to false
autostart: defaults to true
controller: defaults to true
thickbox: defaults to false

 Example: <video caption="Water Day" autostart="true" thickbox="true">waterday.wmv</video>

Supported formats

Quicktime
o .mov (video)
o .mp4 (video)
o .mp3 (audio)
o .smi or .smil (dynamic video)
o .3gp (video & audio)

Windows Media
o .avi (video)
o .wmv (video)
o .asf (video)
o .wma (audio)

Flash
o .swf (video application)
o .flv (video)

Ogg
o .ogg (video)
o .ogv (video)
o .oga (audio)

FLV Playlist

<flv title="Playlist title" base="http://some.where.on.the.net/folder/with/files/"> first.flv|First things first second.flv|Second to none third.flv|Third time's a charm </flv>

See Also