Recherche avancée

Médias (91)

Autres articles (54)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Is it possible to force ffmpeg/libav decoder to output an H.264 frame with only current information ?

    19 mars 2018, par Andy Krouwel

    I’m currently using a slightly legacy version of ffmpeg/libav to decode H.264 frames.

    It decodes them with a call to :

    avcodec_decode_video2(context, &outPicture, &gotPicture, inNALPacket);

    For this I provide a series of NAL packets, and once it has ’enough’ it produces the image frame, as outPicture.

    So far, so good.

    However, sometimes (due to network issues) a packet/NAL goes missing.
    I can detect this.
    When this happens I would like to give up on this frame, and tell the decoder to just give me its best shot at the image, given the data so far.

    Is there any way of doing this ? eg. can I construct an inNALPacket that essentially tells the encoder to give up and move on ?

  • Merge commit '4d444d04c1e19cd02ac836d411433906a9f32613'

    1er novembre 2017, par James Almer
    Merge commit '4d444d04c1e19cd02ac836d411433906a9f32613'
    

    * commit '4d444d04c1e19cd02ac836d411433906a9f32613' :
    configure : Default to _WIN32_WINNT=0x0502 (XP) as minimum, for legacy mingw

    See 69f7aad5710f280ad854ea0bb84d59ed1b55bf5b

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] configure
  • how to merge audio and video using ffmpeg in android

    2 août 2016, par sundaralaxman.S.P

    Actually i am going on with the split and merge of audio and video file using ffmpeg in android using below library.

    https://github.com/WritingMinds/ffmpeg-android-java

    I had splitted the audio and video each separately successfully,futher going with the process to merge of audio and video file together got stuck.Here is the link http://www.labnol.org/internet/useful-ffmpeg-commands/28490/. which i followed to merge from

    merge command :

    ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -strict experimental -shortest output.mp4

    Below faced problem :

    The error is :

    At least one output file must be specified.