Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (52)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • ffmpeg add album cover art to mp3 (python)

    19 décembre 2020, par borty

    I've been trying to make a python script which merges a mp3 file with a .jpeg, but I only get it to create a video out of both inputs, instead of a mp3 with the .jpeg just as the cover. I feel like this is slowing my script down alot

    


        (
        ffmpeg
        .concat(input_image, input_audio, v=1, a=1)
        .output(f'C:\Downloads\{vTitle} .mp4').run()
    )


    


    Thats the ffmpeg part i got in my script which works but not as I need it to

    


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

    • [DBH] libavformat/matroska.c
    • [DBH] libavformat/matroska.h
    • [DBH] libavformat/matroskadec.c
    • [DBH] libavformat/matroskaenc.c