Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (72)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7067)

  • Evolution #2975 (Nouveau) : Ajout indication #lang liste article admin SPIP3

    8 avril 2013, par _ CasP

    Rajouter un dans les liste articles, plan et arborescences de l’admin afin de plus facilement distinguer les articles traduits. Il arrive que des articles aient le même titre indépendament de la traduction, par exemple une liste de biographie. Cette indication est donc fort utile pour s’y (...)

  • Anomalie #2966 (Nouveau) : le passage SPIP 2.1.19 à SPIP 2.1.20 fait sauter le gadgets.js

    27 mars 2013, par erational -

    j’ai constaté le bug sur 2 sites différents en les mettant à jour de 2.1.19 à 2.1.20 dans l’espace privé, j’ai un warning js "init_bandeau_gadgets is not defined" cela empêche par ex. de déplier le plan du site sur ?exec=articles_tous apparemment cela vient de ecrire/inc/presentation.php (...)

  • What is the minimum amount of metadata is needed to stream only video using libx264 to encode at the server and libffmpeg to decode at the client ?

    19 mars 2012, par cloudraven

    I want to stream video (no audio) from a server to a client. I will encode the video using libx264 and decode it with ffmpeg. I plan to use fixed settings (at the very least they will be known in advance by both the client and the server). I was wondering if I can avoid wrapping the compressed video in a container format (like mp4 or mkv).

    Right now I am able to encode my frames using x264_encoder_encode. I get a compressed frame back, and I can do that for every frame. What extra information (if anything at all) do I need to send to the client so that ffmpeg can decode the compressed frames, and more importantly how can I obtain it with libx264. I assume I may need to generate NAL information (x264_nal_encode ?). Having an idea of what is the minimum necessary to get the video across, and how to put the pieces together would be really helpful.