Changes between Version 20 and Version 21 of MovieMacro


Ignore:
Timestamp:
May 11, 2015, 5:24:00 PM (9 years ago)
Author:
figaro
Comment:

Rearranged paragraphs to maintain consistency

Legend:

Unmodified
Added
Removed
Modified
  • MovieMacro

    v20 v21  
    99Adds support for preview rendering of movies in the browser and on attachment pages. For preview rendering to be available for all attachments, set the `max_preview_size` in the `[mimeviewer]` section of `trac.ini` to be greater than or equal to `max_size` in the `[attachment]` section.
    1010
    11 == Download and Source
     11== Bugs/Feature Requests
    1212
    13 Download the [download:moviemacro zipped source], check out [http://trac-hacks.org/svn/moviemacro using Subversion], or [source:moviemacro browse the source] with Trac.
     13Existing bugs and feature requests for MovieMacro are [query:status!=closed&component=MovieMacro&order=priority here].
     14
     15If you have any issues, create a [/newticket?component=MovieMacro new ticket].
     16
     17[[TicketQuery(component=MovieMacro,group=type,format=progress)]]
     18
     19== Download
     20
     21Download the [download:moviemacro zipped source].
    1422
    1523It is available from PyPI also: [pypi:TracMovieMacro].
    1624
     25== Source
     26
     27Check out [http://trac-hacks.org/svn/moviemacro using Subversion], or [source:moviemacro browse the source] with Trac.
     28
    1729== Configuration
    1830
    19 Default parameter can be set in trac.ini.
     31Default parameter can be set in your `trac.ini` file:
    2032
    21 {{{ #!ini
     33{{{#!ini
    2234[moviemacro]
    2335width = 320px
     
    2638}}}
    2739
    28 '''Note''':
    29 
    30 For attachments, Flowplayer tries to resolve to an appropriate size, but ignoring width/height settings. This is because Flowplayer settings has `adaptiveRatio=true` by default in MovieMacro. It's preferred to adjust the player size automatically, than select a particular size in almost every case.
     40'''Note''': For attachments, Flowplayer tries to resolve to an appropriate size, but ignoring width/height settings. This is because Flowplayer settings has `adaptiveRatio=true` by default in MovieMacro. It's preferred to adjust the player size automatically, than select a particular size in almost every case.
    3141
    3242If you don't want that behavior, pass `adaptiveRatio=false` as a query string and `style=width: 320px; height:240px;` parameter. See also: https://flowplayer.org/docs/setup.html
     
    5969
    6070Then reference your file like so:
    61 {{{
    62 #!sh
     71{{{ #!sh
    6372[[Movie(htdocs://site/filename.flv)]]
    6473}}}
     
    6675You can also attach the file to a ticket, wiki page or keep it in you SVN repository. Reference the file like so:
    6776
    68 * Simple form if an attachment is in the ticket/wiki.
     77* Simple form if an attachment is in the ticket/wiki:
    6978 {{{ #!sh
    7079[[Movie(sample.webm)]]
    7180}}}
    7281
    73 * Restricted ImageMacro format style
     82* Restricted ImageMacro format style:
    7483 {{{ #!sh
    7584[[Movie(ticket:123:sample.mp4)]]
     
    7786}}}
    7887
    79 * Fully qualified form.
     88* Fully qualified form:
    8089  * from your project's htdocs: `htdocs://site/filename.flv`
    8190  * from a plugin's htdocs: `htdocs://plugin/dir/filename.flv`
     
    8392  * from an attachment on a wiki page: `wiki://WikiWord/filename.flv`
    8493  * from your SVN repository revision `[1024]`, you can also use `HEAD` as your revision: `source://1024/trunk/docs/filename.flv`
    85 
    86 == Bugs/Feature Requests
    87 
    88 Existing bugs and feature requests for MovieMacro are [query:status!=closed&component=MovieMacro&order=priority here].
    89 
    90 If you have any issues, create a [/newticket?component=MovieMacro new ticket].
    91 
    92 [[TicketQuery(component=MovieMacro,group=type,format=progress)]]
    9394
    9495== Recent Changes