Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (102)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

Sur d’autres sites (11755)

  • ffmpeg make a movie with multiple numbers in filename [closed]

    22 juillet 2024, par NNN

    I have the following four files

    


    mov_00_00.png
mov_00_01.png
mov_01_00.png
mov_01_01.png


    


    I can make a movie using

    


    ffmpeg.exe -i mov_%02d_00.png -filter:v "setpts=10*PTS" out.mp4

    


    But this does not consider the files ending with 01.png.

    


    I tried

    


    ffmpeg.exe -i mov_%02d_%02d.png -filter:v "setpts=10*PTS" out.mp4


    


    But it says

    


    [in#0 @ 0000021982d69000] Error opening input: No such file or directory
Error opening input file mov_%02d_%02d.png.
Error opening input files: No such file or directory


    


    What command line magic do I need to use to make this work ? Thanks.

    


    Edit : I'm using the Windows version under WSL and the glob option is not supported.

    


  • Merge commit ’d316f9cefcd854071985c6f524a9a15348240264’

    31 mars 2017, par James Almer
    Merge commit ’d316f9cefcd854071985c6f524a9a15348240264’
    

    * commit ’d316f9cefcd854071985c6f524a9a15348240264’ :
    aac : Drop pointless cast

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/aacpsy.c
  • avcodec/ac3dec : Check expacc

    3 novembre 2016, par Michael Niedermayer
    avcodec/ac3dec : Check expacc
    

    this is somewhat a magic number, which can be understood from reading section
    "7.1.2 Exponent Strategy" of the ac3 specification, in short :
    Three exponents each represented as number 0-4 are grouped together and
    base-5 encoded, so the maximal correct value is 25*4 + 5*4 + 4 = 124.

    Reviewed-by : Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ac3dec.c