Recherche avancée

Médias (91)

Autres articles (68)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (12812)

  • utvideoenc : properly set slice height/last line

    9 octobre 2014, par Christophe Gisquet
    utvideoenc : properly set slice height/last line
    

    Mimic decoder and obey sampling.

    Does not affect fate tests for utvideo.
    Fixes ticket #3949.

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

    • [DH] libavcodec/utvideoenc.c
  • Revision c38a8edf16 : Merge "Remove extra line."

    14 octobre 2014, par hkuang

    Changed Paths :
     Modify /vp9/decoder/vp9_decodemv.c



    Merge "Remove extra line."

  • ffmpeg : concat syntax and overlay syntax into one line

    16 octobre 2014, par mvhaimin

    I would like to join two videos and overlay a graphic on the joined videos.

    Files

    • v1.mp4 - 1st Video
    • v2.mp4 - 2nd Video
    • watermark.png - Overlay Graphic

    These are the syntax that I learned that will produce required task.

    ffmpeg -i concat:"v1.mp4|v2.mp4" -c copy input.mp4
    ffmpeg -i input.mp4 -i watermark.png -filter_complex "[0:v][1:v] overlay=0:0" output.mp4

    The first syntax could not be executed as MP4 is not supported. Thus, Ill convert it to MPG.

    The question is may how can I join these two syntax in one line.