Recherche avancée

Médias (91)

Autres articles (52)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 (...)

Sur d’autres sites (4986)

  • avformat/mo : Add experimental demuxing support for Opus in ISO BMFF (MP4).

    16 mars 2017, par Matthew Gregan
    avformat/mo : Add experimental demuxing support for Opus in ISO BMFF (MP4).
    

    Based on the draft spec at http://vfrmaniac.fushizen.eu/contents/opus_in_isobmff.html

    Signed-off-by : Matthew Gregan <kinetik@flim.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • Core : Update elementValue method to deal with type="number" fields

    29 avril 2014, par jamierytlewski
    Core : Update elementValue method to deal with type="number" fields
    

    The HTML5 draft defines, for type="number" inputs : "The value
    sanitization algorithm is as follows : If the value of the element is not
    a valid floating-point number, then set it to the empty string instead."
    If the constraint validation considers the input invalid, return false
    as the value, instead of the empty string, for the number and digit
    methods to output their messages.

    This would break in browsers that support type="number", but not the
    constraint validation API. I don’t know of any existing browser where
    that applies.

    Fixes #858
    Fixes #922
    Closes #1093

  • Using FFMPEG, how do we add subtitles in the black bar area or under the video ?

    26 septembre 2020, par DunceDancer

    I followed these steps :

    &#xA;

      &#xA;
    1. Added the black bars

      &#xA;

      -vf "scale=1920:1080:force_original_aspect_ratio=decrease,pad=1920:1080 :(ow-iw)/2 :(oh-ih)/2,setsar=1" Source :How to add black borders to video

      &#xA;

    2. &#xA;

    3. Added the subtitles ("burned" it into the video)

      &#xA;

      ffmpeg -i "imput.mp4" -lavfi "subtitles=subtitles.srt:force_style='Alignment=0,OutlineColour=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18,MarginL=5,MarginV=25'" -crf 1 -c:a copy "output.mp4" Source : ffmpeg subtitles alignment and position

      &#xA;

    4. &#xA;

    &#xA;

    Now I am stuck as to how to place the subtitles under the video or in the black screen.

    &#xA;

    Edit : Screenshot added to clarify

    &#xA;

    Screenshot of the Problem

    &#xA;