Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (85)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9757)

  • How to add a cover image to mp4 file using FFMPEG ?

    27 janvier 2019, par IremadzeArchil19910311

    I need to know how to assign cover image to mp4 file using FFMPEG ?
    Especially if you really need to understand ? Let me explain :

    When I am trying to navigate a mp4 video file using windows explorer
    and navigation option is set to

            View -> Large icons             or
            View -> Extra large icons      

    It allows me to see a picture or an image.
    But in most cases this image is a middle frame of mp4 video file.
    If you will play this mp4 video file and if you will go to middle frame you will see the exact image shown on explorer !

    But I need to know how to see a cover image during explorer navigation instead of this middle frame image ?
    So which FFMPEG commands can help me to add an cover image to mp4 video file ?

  • How to add cover art to MP4 ?

    27 décembre 2018, par Ceetch

    I’m trying to find an effective way to update the metadata for my MP4 files that I plan to put on a DLNA server. First thing, I want to have the video files have a cover art.

    I’m specifically using 640x360 JPG files to be the cover art.
    I might also want to add some other tags, like media type or update the Title. Please let me know what can be done.

    If code suggestions are available, please know I have the file name details in a variable %file% to handle things. The JPG has the same name as the source MP4 file, so it’s easy enough to get the file type and remove the extension, which is what I’ve done so far.

    My goal is to be able to simply drop the MP4 file on the following batch file and know its filename and full path, the JPG file, and attach it to the orgininal MP4 file. Apparently ffmpeg.exe won’t write to the file it pulled from, so I have it go to a temp file and then use MOVE to replace the old file with the fixed file.

    @ECHO OFF
    set arg=%1
    set file=%arg:~1,-5%
    ffmpeg -i "%file%.mp4" -i "%file%.jpg" -acodec copy -vcodec copy -map 0 -map 1:0 "%file%WIP.mp4"
    move /Y "%file%WIP.mp4" "%file".mp4"

    This code did not seem to work. It doesn’t show up in Windows as the cover art, so I’d say it failed.

  • Change Video File Thumbnail/Poster/Image/Cover Art ffmpeg in CMD [on hold]

    15 décembre 2018, par Sebachtian

    I want to change my video file’s cover art(image1) to (image2) using ffmpeg in cmd with thumbnail/poster/image i choose. Something like this :

    enter image description here
    enter image description here

    Here i use ffmpeg and use it on cmd, but the cover art didnt change to the image file instead to default.

    ffmpeg -i D:\1.mkv -i D:\f1.jpg -c:a copy -c:v copy -map 0 -map 1:0 D:\2.mkv

    What did i do wrong ?