Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

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

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

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

  • matroskadec : export cover art correctly

    3 avril 2015, par wm4
    matroskadec : export cover art correctly
    

    Generally, libavformat exports cover art pictures as video streams with
    1 packet and AV_DISPOSITION_ATTACHED_PIC set. Only matroskadec exported
    it as attachment with codec_id set to AV_CODEC_ID_MJPEG.

    Obviously, this should be consistent, so change the Matroska demuxer to
    export a AV_DISPOSITION_ATTACHED_PIC pseudo video stream.

    Matroska muxing is probably incorrect too. I know that it can create
    broken files with an audio track and just 1 video frame when e.g.
    remuxing mp3 with APIC to mkv. But for now this commit does not change
    anything about muxing, and also continues to write attachments with
    AV_CODEC_ID_MJPEG should the muxer application have special knowledge
    that the Matroska is broken in this way.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/matroska.c
    • [DH] libavformat/matroska.h
    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/matroskaenc.c
  • matroskadec : export cover art correctly

    3 avril 2015, par wm4
    matroskadec : export cover art correctly
    

    Generally, libavformat exports cover art pictures as video streams with
    1 packet and AV_DISPOSITION_ATTACHED_PIC set. Only matroskadec exported
    it as attachment with codec_id set to AV_CODEC_ID_MJPEG.

    Obviously, this should be consistent, so change the Matroska demuxer to
    export a AV_DISPOSITION_ATTACHED_PIC pseudo video stream.

    Matroska muxing is probably incorrect too. I know that it can create
    broken files with an audio track and just 1 video frame when e.g.
    remuxing mp3 with APIC to mkv. But for now this commit does not change
    anything about muxing, and also continues to write attachments with
    AV_CODEC_ID_MJPEG should the muxer application have special knowledge
    that the Matroska is broken in this way.

    Fixes trac #4423.

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

    • [DH] libavformat/matroska.c
    • [DH] libavformat/matroska.h
    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/matroskaenc.c
  • Extract Images from video and rebuild video with these images

    6 mars 2015, par David Zenou

    I have a very interesting question i think, i did a simple test.

    First step : I extract images from a little video (duration : 1 minute and 4 seconds) :

    ffmpeg -i C:\test\video.mp4 -r 30 -s 640x360 -f image2 C:\test\foo-%05d.jpeg

    Second step : I want to rebuild the initial video with these extracted images with same parameters :

    ffmpeg -f image2 -i C:\test\foo-%05d.jpeg -r 30 -s 640x360 C:\test\final.mp4

    Special result : Initial video (video.mp4) duration was 1 minute and 4 seconds and new video generated (final.mp4) duration is 1 minute and 17 seconds : the new video is longer and the new film seems slightly slower than the initial video.

    My question : Is it possible to get exactly the same film like initial (same duration, same speed) rebuilding the video from its exctrated images ?