Recherche avancée

Médias (91)

Autres articles (85)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5889)

  • Is there a way to convert a VP9 webm video into CIELAB colourspace in FFMPEG to improve alpha compositing

    18 août 2022, par OneWorld

    I was wondering if there is an option / command to convert a webm VP9 video into CIELAB colour space in FFMPEG ?

    


    I did a search for CIELAB colour space in FFMPEG and couldn't find anything.

    


    I want to reduce the appearance of black edges by pushing into CIELAB space before doing the overlay / alpha compositing. See this post here :-

    


    moviepy black border around png when compositing into an MP4

    


    How can I do that in FFMPEG ?

    


    Any help would be much appreciated.

    


    Kind regards

    


  • lavf/async : Fix ring_write return value

    29 septembre 2022, par Guangyu Sun
    lavf/async : Fix ring_write return value
    

    This fixes a regression from commit 36117968ad.

    wrapped_url_read() used to be able to return positive number from
    ffurl_read(). It relies on the result to check if EOF is reached in
    async_buffer_task().

    But FIFO callbacks must return 0 on success. This should be handled
    in ring_write() instead.

    Test case :
    ffmpeg -f lavfi -i testsrc -t 1 test.mp4
    ffmpeg -i async:test.mp4

    Signed-off-by : Guangyu Sun <gsun@roblox.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/async.c
  • Missing library files in PyInstaller with FFMPEG

    9 mars 2020, par djcmm476

    I’m quite new to PyInstaller, but I’m trying to get it to build an exe from a little set of scripts I’ve written. Unfortunately, I use a couple of different modules, like FFMPEG (through FFPyPlayer). When I try to build I get :

    360570 WARNING : lib not found : avformat-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360572 WARNING : lib not found : SDL2_mixer.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360573 WARNING : lib not found : swresample-3.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360578 WARNING : lib not found : avdevice-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360580 WARNING : lib not found : swscale-5.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360582 WARNING : lib not found : avfilter-7.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360583 WARNING : lib not found : postproc-55.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360584 WARNING : lib not found : avutil-56.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    360586 WARNING : lib not found : avcodec-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd

    I couldn’t find these dlls, but I found them on the ffmpeg site and tried to point PyInstaller right at them using —paths, but it doesn’t make a difference.

    Does anyone have any suggestions ? They’d be greatly appreciated.