Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (35)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (3129)

  • ffmpeg — copy attached cover image (cover.jpg) of video file during encode ? [closed]

    15 octobre 2024, par emk2203

    I am trying to encode a video with ffmpeg which has a cover file attached. This cover file should end up in the encoded video as well.

    


    I can do this with mkvextract attachments movie.mkv 1 && <long ffmpeg="ffmpeg" encode="encode" command="command"></long> && mkvpropedit movie_new.mkv --add-attachment cover.jpg. Both old and new show up in mediainfo with the two lines

    &#xA;

    Cover                                    : Yes&#xA;Attachments                              : cover.jpg&#xA;

    &#xA;

    But when I try to integrate this into a ffmpeg command, ffmpeg insists on detecting a second video stream and either dropping it or encoding it as a second video stream which completely confuses the player.

    &#xA;

    What I tried :&#xA;-map 0:t —> error, cannot find attachments ; -map 0:t? —> runs and encodes second video stream

    &#xA;

    All kinds of -map combinations, even a merge with a separate cover.jpg and ffmpeg -i movie.mkv -i cover.jpg ... -map 1 -map 0 -c copy -disposition:0 attached_pic fails.

    &#xA;

    Any ideas ?

    &#xA;

  • fate/cover-art : Add test for muxing cover arts to FLAC

    29 août 2021, par Andreas Rheinhardt
    fate/cover-art : Add test for muxing cover arts to FLAC
    

    Also covers muxing and demuxing of nonstandard FLAC channel layouts
    and the multi-dim-quant option of the FLAC encoder
    (all of which was hitherto uncovered).

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

    • [DH] tests/fate/cover-art.mak
    • [DH] tests/ref/fate/cover-art-flac-remux
  • How to configure VS 2010 to make a DLL which utilizes other DLLs

    27 octobre 2014, par LawfulEvil

    My Visual Studio 2010 project target is a DLL. This particular DLL is for use with some video analytics. The DLL I am building will connect to RTSP cameras and provide video to the analytics engine. The interfaces my DLL must provide are well documented by the analytics engine.

    I have configured my VS project to have a target of a DLL. It compiles my code just fine. However, I am utilizing ffmpeg to assist with some RTSP stuff and to conversion of video frames to the format needed by the analytics engine. I have the headers for ffmpeg and can compile just fine against it. However, when my DLL goes to link, all the functions from ffmpeg are listed as unresolved external symbols.

    I have the libraries (avcodec, avutil, etc) listed as additional linker dependencies (the .lib versions obviously) and when I turn on verbose mode, I can see that it picked up the additional linker directory path I specified and found the ffmpeg files in their directory. However, it doesn’t seem to want to link them.

    If my make my project a static library instead of a DLL, everything links just fine. However, I need generate a DLL. So, how do I configure VS2010 to pull in these ffmpeg DLLs (or libs) and complete the link and generated my DLL.

    Extra Credit, is there a way to pull the DLLs in together so I only need to deploy my single DLL instead of having to install all the ffmpeg DLLs in addition to the one I wrote ?