Recherche avancée

Médias (91)

Autres articles (62)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • avcodec/mpeg4videoenc : Use 64 bit for times in mpeg4_encode_gop_header()

    21 mai 2018, par Michael Niedermayer
    avcodec/mpeg4videoenc : Use 64 bit for times in mpeg4_encode_gop_header()
    

    Fixes truncation
    Fixes Assertion n <= 31 && value < (1U << n) failed at libavcodec/put_bits.h:169
    Fixes : ffmpeg_crash_2.avi

    Found-by : Thuan Pham <thuanpv@comp.nus.edu.sg>, Marcel Böhme, Andrew Santosa and Alexandru RazvanCaciulescu with AFLSmart

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg4videoenc.c
  • Revision af87148a22 : Merge "Add vp9_tm_predictor_32x32 neon implementation which is 7.8 times faster

    28 janvier 2014, par hkuang

    Merge "Add vp9_tm_predictor_32x32 neon implementation which is 7.8 times faster
    than C."

  • FFmpeg : Combine video files with different start times

    18 mai 2016, par Fabian

    I have two webm files with audio and video recordings of a video conference session. Both files only contain one side of the conversation. They are not of the same length (someone has joined before the other one), but I have the unix timestamp in milliseconds of the start time of each video file.

    On a timeline they look like this :

    webm 1:   -----------------------------------------------
    webm 2:                 -----------------------------

    or like this :

    webm 1:   -----------------------------------------------
    webm 2:                          -----------------------------

    I would like to combine these two video files into one file so that :

    1. They appear next to each other (using the hstack option), and
    2. That they are mixed with taking the time stamps of the start times
      into account. The final video should then look like this :

    Target result : --------------===========================----

    The beginning and the end of the new video would show a black placeholder for the video file that has no data at this time of the mixed stream.

    At the moment I use this command :

    ffmpeg -i 1463408731413703.webm -i 1463408880317860.webm -filter_complex \
    "[0:v][1:v]hstack=inputs=2[v]; \
    [0:a][1:a]amerge[a]" \
    -map "[v]" -map "[a]" -ac 2  -c:v libvpx output.webm

    This creates a video like this :

    Not good result : =====================------------------

    i.e. the conversation is out of sync.

    How can I combine two video streams with different length and different start times using ffmpeg so that I will end up with "Target result" above ?

    Thanks a lot !