Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (87)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (9622)

  • doc : Libavfilter English cleanup

    6 avril 2014, par Katerina Barone-Adesi
    doc : Libavfilter English cleanup
    

    This aims to standardize the English used in the libavfilter
    documentation, describing the same thing in the same way more often,
    and significantly reduce the amount of outright errors, including
    run-on sentences and sentence fragments.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] doc/filters.texi
    • [DBH] doc/libavfilter.texi
  • Localization : Update German language file (#2115)

    4 décembre 2017, par Hawkeye1909
    Localization : Update German language file (#2115)
  • ffmpeg - how to overlay multiple rotated texts and video

    10 novembre 2017, par user2893270

    I have the command for ffmpeg in order to rotate one text and overlay it to my video, but how to do it if I have multiple texts to be rotated ?

    ffmpeg -i input1.mp4 -filter_complex \
    "color=black:100x100[c]; \
    [c][0]scale2ref[ct][mv]; \
    [ct]setsar=1, \
    drawtext=fontfile=../../public/fonts/Roboto-Regular-webfont.ttf: \
    text='Test Text':fontsize=36:fontcolor=white,split[text][alpha]; \
    [text][alpha]alphamerge,rotate=30:ow=rotw(30):oh=roth(30):c=black@0[txta]; \
    [mv][txta]overlay=x='min(0,-H*sin(30))+100':y='min(0,W*sin(30))+50':shortest=1" \
    output_video.mp4