Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (4)

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

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (3525)

  • ffmpeg continous file stream or live stream

    17 novembre 2019, par shrw

    I work in a news channel. and the use case is little common.
    Where we have ads lined up. Let’s say 1000 ads in the entire day. ads are usually gif files overlay of 100 pixels X 500 pixels and usually less than 10 seconds.
    then we need to either play mp4 files or stream live content.
    What i really want is to :

    1. if we have 30 mp4 files to play in the entire day and 1000 gif overlay ads.
    2. Is it possible to switch(with the help of any coding languale like node.js or linux commands)
      streams from file to live stream.
  • I want to record live stream and display it on my site, how to do it ? (ffmeg)

    18 octobre 2011, par user893856

    I want to record live stream and display it on my site, how to do it ? (ffmeg)
    I know FFMPEG might know it, but I didnt find a way to record from the display. If it can record and stream toward a site, how could it display it realtime ?

  • Passing FFmpeg encoder output to live 555 media server

    23 septembre 2013, par Ashutosh

    I need help on transmitting encoded output from encoder video output to live 555 media server.

       ret=avcodec_encode_video2(c,&pkt,(AVFrame*)&sc_dst_data,&gotim);
       source=ByteStreamMemoryBufferSource::createNew(*env,pkt.data,ret);
       if (source == NULL){}
       videoES = source;
       video_source=H264VideoStreamFramer::createNew(*env,videoES);
       video_sink->startPlaying(*video_source,afterPlaying, video_sink);

    The above codes doesn't transmit the streams properly.it breaks.any insights on how to do for a proper streaming in ffmpeg ?
    Please help.