Recherche avancée

Médias (91)

Autres articles (71)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8643)

  • Add support for building fuzzer tools for an individual demuxer

    10 octobre 2020, par Michael Niedermayer
    Add support for building fuzzer tools for an individual demuxer
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] Makefile
    • [DH] tools/Makefile
    • [DH] tools/target_dem_fuzzer.c
  • ffmpeg - convert video into individual frame image files ? [closed]

    2 janvier 2021, par MrFunreal

    i am trying to turn every single frame of a video file into png files using ffmpeg.&#xA;i have found several guides on how to do that, most of which look the same, by doing this :

    &#xA;

    &#xA;

    ffmpeg -i vid.mp4 frames/out%03d.png

    &#xA;

    &#xA;

    However, this does not work. FFmpeg for some reason just replaces the "%0" of the output file with the entire path of the bat file and then tells me that's wrong, like so :

    &#xA;

    &#xA;

    [image2 @ 000002c6aa87f680] Could not open file :&#xA;frames/outG :\Videos\vid_to_frames\3_video_to_frames.bat3d.jpg&#xA;av_interleaved_write_frame() : I/O error

    &#xA;

    &#xA;

    If i remove the "%0" of the output file it creates a single frame and gives me an error, telling me i need to put the "%03d" into the name, which doesn't work.

    &#xA;

    &#xA;

    [image2 @ 000001dc9a09fd40] Could not get frame filename number 2 from&#xA;pattern '$filename3d.png'. Use '-frames:v 1' for a single image, or&#xA;'-update' option, or use a pattern such as %03d within the filename.&#xA;av_interleaved_write_frame() : Invalid argument

    &#xA;

    &#xA;

    Is this just broken ?&#xA;I found about 20 guides on how to do it, all of which use this exact same method and it just doesn't work.

    &#xA;

    Does anyone know another way to do this via ffmpeg ? (it must be via ffmpeg)

    &#xA;

  • FFMpeg command output shows 'green pixelated' video

    18 janvier 2021, par DonX

    I am trying to take a single image and add audio resulting in a video playing the entire song with that single image ; much like you see for YouTube videos for songs. The command I am using is from this link : https://askubuntu.com/questions/868283/image-audio-mp4-how-to-make-video-smaller

    &#xA;

    This is the command :

    &#xA;

    ffmpeg -loop 1 -framerate 1 -i image.png -i song.aac -c:v libx264 -preset veryslow -crf 0 -c:a copy -shortest output.mp4&#xA;

    &#xA;

    It works as intended for having the video file be a small size, and the song plays as well, but depending on the image I used, some of the images appear 'Green' when playing the video.

    &#xA;

    However though, this command works for any image used :

    &#xA;

    ffmpeg -loop 1 -framerate 1 -i image.jpg -i music.mp3 -c copy -shortest output.mp4&#xA;

    &#xA;

    But the result is a very big file whereas I would like it to be smaller. Any help would be greatly appreciated ! Thank you !

    &#xA;

    FFMpeg version : 4.3.1

    &#xA;