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)

  • avcodec/jpeg2000dec : Use 32x32->64bit for 9/7i dequantization

    24 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Use 32x32->64bit for 9/7i dequantization
    

    Like the 5/3 case this is needed to avoid overflows and similarly for 16bpp
    output pure 32bit operations are insufficient if high quality is wanted

    Note, this code-path is only used in bitexact mode, so this should not
    affect the speed of any real use-case

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/jpeg2000dec.c
  • How can i use ffmpeg to make an animated jpeg ? [duplicate]

    16 septembre 2019, par big boi

    This question already has an answer here :

    I’m trying to make some software that records a window with ffmpeg.
    I would use a gif format but it looses quality and i wanted to use an animated jpeg.

    However, when changing the format from ouput.gif to .jpg it didn’t work.
    Any ideas ? Could i export it as an mp4 them convert to jpeg ?

    **Edit :**What about animated png’s ? or is that the same case...

  • Writing video with x264 Fourcc in Videowriter class in opencv

    28 janvier 2015, par Kausic Gunasekkar

    I wanted to do a very simple project of giving a program an input video which is saved in the same directory as "my_video" without any processing steps. I specifically want to use the H.264 compression format. Hence I chose ’X’,’2’,’6’,’4’ Fourcc and the program popped out the following errors.

    broken ffmpeg default settings detected
    use an encoding preset (e.g. -vpre medium)
    preset usage : -vpre -vpre
    speed presets are listed in x264 —help
    profile is optional ; x264 defaults to high
    Could not open codec ’libx264’ : Unspecified error

    So how do I install libx264 and configure it to work with opencv.I tried setting the fourcc value to -1 to do it by hand but no Window popped up requesting me to choose one of the available codec.( isn’t that supposed to happen).

    any help would be appreciated.