Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (35)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6720)

  • Revision 69dc876b4e : Set uv_crop_height/width in all the places When configuring the buffer make sur

    15 août 2014, par Johann

    Changed Paths :
     Modify /vp8/vp8_cx_iface.c


     Modify /vp8/vp8_dx_iface.c



    Set uv_crop_height/width in all the places

    When configuring the buffer make sure to set all the (now) required
    fields. Use the canonical variables and match the style from vpx_scale.

    https://code.google.com/p/webm/issues/detail?id=841

    Change-Id : I71b43d4a03756b8b2d6d60fdf8d7bf41b8041787

  • How to make ffmpeg use GPU in python code ?

    11 mars 2023, par Alex

    I have code like this

    


    import ffmpeg

input_video = ffmpeg.input('video.mp4')

input_audio = ffmpeg.input('audio.mp3')

ffmpeg.concat(input_video, input_audio, v=1, a=1).output('D:/video.mp4').run()


    


    I found commands for terminal but didn't figure out how to make ffmpeg use GPU in Python code. Where and how do I pass the parameters '-hwaccel cuvid' ?
I using ffmpeg-python 0.2.0 from PyPI(pypi.org/project/ffmpeg-python)
I will be very grateful for your help

    


  • FFmpeg : how to make video out of slides and audio

    17 juillet 2014, par Muhammad Umer

    So i have several images some png and some jpgs. And i have mp3 audio. I want to make a video file don’t care what format.

    So i want either :

    A video made up of xyz size meaning images are centered and cropped if they go beyond dimensions coupled with audio in mp3 format..

    or just one image centered or and cropped, still image, video with audio.

    I have tried copying and pasting things and even modifying them after reading documents but in the end i got a blank video with audio and huge file that took forever to complete.

    I have windows 7.