Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (38)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6784)

  • avformat/mpjpegdec : make sure we seek back to the ensured buffer

    26 septembre 2020, par Marton Balint
    avformat/mpjpegdec : make sure we seek back to the ensured buffer
    

    It was possible for the old code to seek back before the most recently read
    data if start of a new multipart was across read boundaries. Now we read some
    small sections multiple times to avoid this, but that is OK.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpjpegdec.c
  • swscale/utils : override forced-zero formats back to full range

    10 octobre 2020, par Jan Ekström
    swscale/utils : override forced-zero formats back to full range
    

    Fixes vf_scale outputting RGB AVFrames with limited range flagged
    in case either input or output specifically sets the range.

    This is the reverse of the logic utilized for RGB and PAL8 content
    in sws_setColorspaceDetails.

    • [DH] libswscale/utils.c
  • ffmpeg add album cover art to mp3 with python

    19 décembre 2020, par borty

    I've been trying to make a python script which merges a mp3 file with a .jpg, but I only get it to create a video out of both inputs, instead of a mp3 with the .jpg just as the cover. I have tried to look for ways other people have done that but I only seem to find the command-line way and nothing regarding python

    &#xA;

        import ffmpeg&#xA;&#xA;    input_image = ffmpeg.input(r&#x27;C:\Downloads\thumbnail.jpg&#x27;)&#xA;    input_audio = ffmpeg.input(r&#x27;C:\Downloads\audio.mp4&#x27;)&#xA;&#xA;    (&#xA;        ffmpeg&#xA;        .concat(input_image, input_audio, v=1, a=1)&#xA;        .output(r&#x27;C:\Downloads\audio1.mp4&#x27;).run()&#xA;    )&#xA;

    &#xA;

    Thats the ffmpeg part i got in my script which works but not as I need it to

    &#xA;