Recherche avancée

Médias (91)

Autres articles (41)

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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (5726)

  • FFmpeg : How to convert horizontal video 16:9 to vertical video 9:16, with Black background on top and bottom sides

    28 mars 2019, par IbrahimCetin

    I wanted convert 16:9 video to 9:16 and find this :
    "FFmpeg : How to convert horizontal video 16:9 to vertical video 9:16, with blurred background on top and bottom sides"

    But I want video top and bottom sides black but I couldn’t. How can I do this ?

    Thanks for your help

  • ffpmeg vs ffprobe performance

    5 octobre 2023, par Thomas

    I wanted to try extracting frames at scene changes with ffmpeg, vs. getting the frame numbers with ffprobe and extracting them later.

    



    But I had a surprise : ffprobe seems to be much slower than ffmpeg, while ffmpeg is taking the frames, resizing and saving them as well.

    



    ffmpeg command line :

    



    ffmpeg -hide_banner -y -i d:/test/m/long.mkv -vf "select=gt(scene\,0.4), showinfo, scale=320:-1, tile=12x200" -vsync 0 thumbnails%03d.png


    



    this takes : 488 seconds

    



    ffprobe command line :

    



    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=/test/m/long.mkv,select=gt(scene\,.4)"


    



    this takes : 899 seconds

    



    I am missing something ?

    


  • does av_read_frame add FF_INPUT_BUFFER_PADDING_SIZE ?

    3 juillet 2015, par eladm26

    I’m using libav to read an MPEG stream.
    I’m using the function av_read_frame() to read some frames into packets :

    av_read_frame(pFormatCtx, &packet)

    I then use the function avcodec_decode_video2 to decode the packet into frame.
    the documentation of the function avcodec_decode_video2 contains the following warning :

    The input buffer must be FF_INPUT_BUFFER_PADDING_SIZE larger than the
    actual read bytes because some optimized bitstream readers read 32 or
    64 bits at once and could read over the end. The end of the input
    buffer buf should be set to 0 to ensure that no overreading happens
    for damaged MPEG streams.

    I wanted to know if the function av_read_frame doesn’t already allocate the additional FF_INPUT_BUFFER_PADDING_SIZE ?

    Thank you.