Recherche avancée

Médias (91)

Autres articles (106)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (11960)

  • x86 : Enable high bit-depth x264_coeff_last64_avx2_lzcnt

    11 octobre 2015, par Henrik Gramner
    x86 : Enable high bit-depth x264_coeff_last64_avx2_lzcnt
    

    The function existed but was never enabled.

    • [DH] common/quant.c
  • Revision 481b834842 : Fix vp10 high bit-depth build Change-Id : Ie3daed0b282b43ef81d2f8797ac1f6e8bde7d

    11 septembre 2015, par Jingning Han

    Changed Paths :
     Modify /vp10/encoder/encodemb.c


     Modify /vp10/encoder/rdopt.c



    Fix vp10 high bit-depth build

    Change-Id : Ie3daed0b282b43ef81d2f8797ac1f6e8bde7d65e

  • how to speed up video and add watermark using ffmpeg

    30 octobre 2017, par 1234567

    How can we speed up video and add watermark using ffmpeg

    for speed up video we have this command

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mp4

    for water mark we use

    "-y", "-i", j, "-i", image1, "-i", image2, "-i", image3, "-filter_complex",
                  "[0:v][1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                          "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                          "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
                   "-c:v","libx264",  "-preset", "ultrafast", out;

    how can we merge bot commands I have various commands
    like this

       ""-y", "-i", j, "-i", image2, "-i", image2, "-i", image2, "-filter_complex",
        "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" +
                "[1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                     "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                       "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
               "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4",
                 "-preset", "ultrafast", out"

    how can we speed video and add watermark

    the error that i get is

    [AVFilterGraph @ 0xac59c530] No output pad can be associated to link label '1:v'.
    Error initializing complex filters.