Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (54)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

Sur d’autres sites (7400)

  • FFMPEG mp4 from http live streaming m3u8 file ?

    18 mars 2017, par thiago.adriano26

    How Can I extract mp4 from http live streaming m3u8 file ? I Tried this command below :

    ffmpeg -i {input file} -f rawvideo -bsf h264_mp4toannexb -vcodec copy out.mp4

    I took this error :

    [NULL @ 0000000002f07060] Packet header is not contained in global extradata, corrupted stream or invalid MP4/AVCC bitstream Failed to open bitstream filter h264_mp4toannexb for stream 0 with codec copy : I

  • Timestamp discontinuity issue in HTTP Live Streaming

    25 décembre 2014, par user3663917

    I was trying to do HTTP Live streaming. The segmentation of the files were done using FFMPEG. The segments are of 5 seconds each. In my case every one minute the PCR values of the input "ts" is reset, ie in the segmented files the segments created after every one minute is having a different range of pcr compared to the previous segments(discontinuity in pcr). These segments work fine in apple devices but in android devices the stream gets stuck after one minute. Is there some method to overcome this issue either in the server side or in the android side ?

  • How to record the http live streaming from an IP Cam

    26 novembre 2012, par abhishek

    I have created the application in which the client can view the ip camera which is giving
    an http live stream of MJPEG using this link
    Android ICS and MJPEG using AsyncTask

    Now i want the user to record the video into its memory card .
    I have googled for a while and the only two approaches which came in my mind :-

    1. Either i keep storing the jpeg images and when user clicks stop recording then i
      somehow clip all the images as to provide a 3GP video or some other file format.
      But i don't know how to create the video from all the images and will this be an efficient
      approach or not.

    2. Or i do ffmpeg and in this case i will have to deal with NDK and it seems to be a longer
      path which may lead to nowhere :P

    So is FFMPEG a better option ? If yes please share some links or is the first option better.
    Thanks in advance