| 1 | You can attach the file to a ticket or wiki page. Reference the file like so: |
| 2 | |
| 3 | == Adding images == |
| 4 | |
| 5 | |
| 6 | == Adding movie files == |
| 7 | |
| 8 | === Simple form if an attachment is in the ticket/wiki=== |
| 9 | {{{ |
| 10 | [[Movie(sample.webm)]] |
| 11 | }}} |
| 12 | Restricted ImageMacro format style: |
| 13 | {{{ |
| 14 | [[Movie(ticket:123:sample.mp4)]] |
| 15 | }}} |
| 16 | {{{ |
| 17 | [[Movie(wiki:test/sub/sample.mp4)]] |
| 18 | }}} |
| 19 | |
| 20 | === Embed youtube video === |
| 21 | {{{ |
| 22 | [[Moviehttps://www.youtube.com/watch?v=qRsLg6ZOd58&start=44&rel=0,style=width:320px;%20height:240px;)]] |
| 23 | }}} |
| 24 | The player's parameter can be passed as a query string. See also: https://developers.google.com/youtube/player_parameters |
| 25 | |
| 26 | === Embed metacafe video === |
| 27 | {{{ |
| 28 | [[Movie(http://www.metacafe.com/watch/1768855/the_size_of_all_planets_are_relative/)]] |
| 29 | }}} |
| 30 | |
| 31 | === Embed vimeo video === |
| 32 | {{{ |
| 33 | [[Movie(http://vimeo.com/106808835)]] |
| 34 | }}} |
| 35 | |
| 36 | Fully qualified form: |
| 37 | * from your project's htdocs: {{{htdocs://site/filename.flv}}} |
| 38 | * from a plugin's htdocs: {{{htdocs://plugin/dir/filename.flv}}} |
| 39 | * from an attachment on ticket #1234: {{{ticket://123/filename.flv}}} |
| 40 | * from an attachment on a wiki page: {{{wiki://WikiWord/filename.flv}}} |
| 41 | * from your SVN repository revision [1024], you can also use HEAD as your revision: {{{source://1024/trunk/docs/filename.flv}}} |
| 42 | |