Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (29)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6533)

  • FFmpeg Live Stream - Loop Video ?

    15 décembre 2015, par Dread-Eye

    I am trying to stream a video loop to justin.tv using FFmpeg ? I have managed to loop an image sequence and combine it with line in audio :

    ffmpeg -loop 1 -i imageSequence%04d.jpg -f alsa -ac 2 -ar 22050 -ab 64k \
      -i pulse -acodec adpcm_swf -r 10 -vcodec flv \
      -f flv rtmp ://live.justin.tv/app/
    

    Is it possible to do this with a video file ?

  • ffmpeg : use a max variable to hold the maximum dts

    3 mai 2013, par Michael Niedermayer
    ffmpeg : use a max variable to hold the maximum dts
    

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

    • [DH] ffmpeg.c
  • Http Live Streaming EXT-X-STREAM-INF, Calculating BANDWITH

    26 juin 2012, par Agzam

    Initially I've tried to find possible ways to do HLS segmenting on other non-Mac platforms.

    Segmenting videos for HLS involves the following steps :

    1) Splitting the encoded video into segments

    2) Creating playlist (.m3u8) file that simply contains list of segments for the current rendition, including duration in seconds for each segment

    3) Creating a variant playlist that contains relative paths to all playlists of all renditions with the information about BANDWITH which according to HTTP Live streaming protocol is :

    The value is a decimal-integer of bits per second. It MUST be an upper bound of the overall bitrate of each media segment (calculated to include container overhead) that appears or will appear in the Playlist.

    Latest version of ffmpeg includes possibilities of splitting videos. However ffmpeg can’t create m3u8 files. Creating simple playlist not a problem. But creating variant playlist might be :

    So variantplaylistcreator on Mac creates those, calculates somehow bitrates and puts value based on that into BANDWITH tag.

    I’ve tried many different ways but yet I couldn’t get exactly the same numbers that variantplaylistcreator does, and at this point I can’t find any information how exactly it calculates those values and what algorithm it uses.
    My numbers are close, but still slightly different.

    In theory it should not be a problem, but the point is - I don’t know that for sure.
    Maybe the BANDWITH information should be precise for flawless video playing, maybe it doesn’t have to.

    Anyway I'm really curious how exactly variantplaylistcreator calculates them :