Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6740)

  • Merge remote-tracking branch ’qatar/master’

    17 septembre 2013, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    doc : Add missing hashes and dates to APIChanges

    Conflicts :
    doc/APIchanges

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/APIchanges
  • FFmpeg cut a 16:9 video to a 9:16 ratio and put subtitle only in ratio [closed]

    8 septembre 2023, par LordzSpectron

    I want to cut a 16:9 video to take only the central part of it, vertical and what's left, fill it with black borders, example :

    &#xA;

    Video Example

    &#xA;

    I want only the part highlighted in red.

    &#xA;

    How to make this using ffmpeg ?

    &#xA;

    I've been trying using crop, some answers that taught how to blur what's left, but they all leave the full video and just cut it down to 9:16.

    &#xA;

    I want to have only the middle part highlighted and the rest be black border.

    &#xA;

  • Having ffmpeg add a repeating text overlay on a video

    30 mai 2020, par Caius Jard

    I'm looking to create an overlay that cycles through the characters in a string over and over. I've succeeded in using a sendcmd file to put A, B, C, D, E on the first 5 seconds of a video

    &#xA;&#xA;

    0  drawtext reinit &#x27;text=A&#x27;;&#xA;1  drawtext reinit &#x27;text=B&#x27;;&#xA;2  drawtext reinit &#x27;text=C&#x27;;&#xA;3  drawtext reinit &#x27;text=D&#x27;;&#xA;4  drawtext reinit &#x27;text=E&#x27;;&#xA;

    &#xA;&#xA;

    But it doesn't cycle and I haven't been able to find a way to make it, because sendcmd looks like it just takes a simple timecode. I could make a command file 3600 lines long for my hour video, with those commands in over and over (the command file would be generated programmatically so not onerous)

    &#xA;&#xA;


    &#xA;&#xA;

    After some considerable experimenting I was able to do it with 5 separate drawtext :

    &#xA;&#xA;

    drawtext=fontfile=/Windows/Fonts/bauhs93.ttf:fontsize=1024:fontcolor=white@0.1:bordercolor=black@0.1:borderw=10:r=250:text=&#x27;A&#x27;:x=if(trunc(mod(t\,5))\,-2000\,(w-tw)/2),&#xA;drawtext=fontfile=/Windows/Fonts/bauhs93.ttf:fontsize=1024:fontcolor=white@0.1:bordercolor=black@0.1:borderw=10:r=250:text=&#x27;B&#x27;:x=if(trunc(mod(t\,5))-1\,-2000\,(w-tw)/2),&#xA;drawtext=fontfile=/Windows/Fonts/bauhs93.ttf:fontsize=1024:fontcolor=white@0.1:bordercolor=black@0.1:borderw=10:r=250:text=&#x27;C&#x27;:x=if(trunc(mod(t\,5))-2\,-2000\,(w-tw)/2),&#xA;drawtext=fontfile=/Windows/Fonts/bauhs93.ttf:fontsize=1024:fontcolor=white@0.1:bordercolor=black@0.1:borderw=10:r=250:text=&#x27;D&#x27;:x=if(trunc(mod(t\,5))-3\,-2000\,(w-tw)/2),&#xA;drawtext=fontfile=/Windows/Fonts/bauhs93.ttf:fontsize=1024:fontcolor=white@0.1:bordercolor=black@0.1:borderw=10:r=250:text=&#x27;E&#x27;:x=if(trunc(mod(t\,5))-4\,-2000\,(w-tw)/2)&#xA;

    &#xA;&#xA;

    But as can be seen, I have to repeat a lot of stuff here. Is there any slicker way ? It does seem to have a noticeable effect on encoding speed the more chars are added

    &#xA;&#xA;

    I was hoping that text expressions would help but it seems I can only return numerics from the values, so this expression didn't work out :

    &#xA;&#xA;

    %{e:if(trunc(mod(t,5)),&#x27;A&#x27;, &#x27;&#x27;)%{e:if(trunc(mod(t,5))-1,&#x27;B&#x27;, &#x27;&#x27;) ...&#xA;

    &#xA;