Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (66)

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

  • 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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (10295)

  • vdpau : Do not #include vdpau_x11.h from the main vdpau header

    8 décembre 2016, par Diego Biurrun
    vdpau : Do not #include vdpau_x11.h from the main vdpau header
    

    That header should only be included in the special bits that use X11 code.

    • [DBH] libavcodec/vdpau.h
  • avformat/matroskadec : Treat SimpleBlock as EBML_BIN

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Treat SimpleBlock as EBML_BIN
    

    Up until now, the SimpleBlock was treated specially : It basically had
    its own EBML category and it was also included in the BlockGroup EBML
    syntax (although a SimpleBlock must not exist in a BlockGroup according
    to the Matroska specifications). The latter fact also meant that
    a MatroskaBlock's buffer was always unreferenced twice.
    This has been changed : The type of a SimpleBlock is now an EBML_BIN.
    The only way in which SimpleBlocks are still different is that they
    share their associated structure with another unit (namely BlockGroup).
    This is also used to unref the block : It is always unreferenced via the
    BlockGroup syntax.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c
  • Merging multiple video files with ffmpeg and xfade filter

    25 août 2021, par tjk

    I need to merge multiple video files (with included audio) into a single video. I've noticed xfade has been recently released and used it but I am running into an audio sync issue.

    &#xA;

    All videos are in the same format / resolution / fame and bitrate / etc both for video and audio.

    &#xA;

    Here is what I am using to merge 5 videos of various durations with 0.5 crossfade transitions :

    &#xA;

    ffmpeg \&#xA;-i v0.mp4 \&#xA;-i v1.mp4 \&#xA;-i v2.mp4 \&#xA;-i v3.mp4 \&#xA;-i v4.mp4 \&#xA;-filter_complex \&#xA;"[0][1]xfade=transition=fade:duration=0.5:offset=3.5[V01]; \&#xA; [V01][2]xfade=transition=fade:duration=0.5:offset=32.75[V02]; \&#xA; [V02][3]xfade=transition=fade:duration=0.5:offset=67.75[V03]; \&#xA; [V03][4]xfade=transition=fade:duration=0.5:offset=98.75[video]; \&#xA; [0:a][1:a]acrossfade=d=0.5:c1=tri:c2=tri[A01]; \&#xA; [A01][2:a]acrossfade=d=0.5:c1=tri:c2=tri[A02]; \&#xA; [A02][3:a]acrossfade=d=0.5:c1=tri:c2=tri[A03]; \&#xA; [A03][4:a]acrossfade=d=0.5:c1=tri:c2=tri[audio]" \&#xA;-vsync 0 -map "[video]" -map "[audio]" out.mp4&#xA;

    &#xA;

    The code above generates a video with audio. The first and second segment is aligned with audio but starting with the second transition the sound is misaligned.

    &#xA;