Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (75)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • fftools/ffmpeg : use stack variables to shorten code

    24 mars 2023, par Anton Khirnov
    fftools/ffmpeg : use stack variables to shorten code
    
    • [DH] fftools/ffmpeg.c
  • avcodec/eatgq : Move transient GetByteContext from context to stack

    20 octobre 2022, par Andreas Rheinhardt
    avcodec/eatgq : Move transient GetByteContext from context to stack
    

    Reviewed-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/eatgq.c
  • How do I batch stack one video with a set of another videos in ffmpeg ?

    18 octobre 2022, par Yalla Papi

    I have several mp4 files I am trying to combine into new videos. What I want to do is this without typing out the command a billion times :

    &#xA;

    ffmpeg -i file1.mp4 -i file2.mp4 -filter_complex vstack combo1.mp4&#xA;ffmpeg -i file1.mp4 -i file3.mp4 -filter_complex vstack combo2.mp4&#xA;ffmpeg -i file1.mp4 -i file4.mp4 -filter_complex vstack combo3.mp4&#xA;ffmpeg -i file1.mp4 -i file5.mp4 -filter_complex vstack combo4.mp&#xA;

    &#xA;

    4

    &#xA;

    How would one go about doing this ?

    &#xA;