Recherche avancée

Médias (91)

Autres articles (23)

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

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

Sur d’autres sites (6696)

  • Use FFSERVER's C API to receive feed at an Android Client

    17 mai 2016, par user3159395

    I want to stream live feed of a device like PC to an Android Client using RTSP protocol. Now I know this can be achieved using "ffmpeg" and "ffserver". But I wish to receive the stream frame by frame becuase I have process ( some image processing ) each frame. Thus, I am guessing I need to use ffserver’s C API to get frame one by one.

    1. Does ffserver have a C API ?
    2. If answer to 1. was yes, please support your answer with a concise example, perhaps simple C program to get frames from a URL feed.
    3. Is any special configuration needed for RTSP protocol ?

    Please help me as I have already searched thoroughly.

  • RTSP conection using ffmpeg in c++ [on hold]

    21 septembre 2017, par chona

    I am a student of ffmpeg.

    I ask here because I am trying to do a RTSP connection using ffmpeg and I don’t find information or any example anywhere.

    At the moment I have thought that I need two classes, one in the client side an other in the server side.

    I have understood that the client side have to ask for to the server side the connection, then its when the RTSP protocol starts. But I don’t know how could I program it.

    The objective is that the protocol creates the connection and then the server starts streaming video, all programmed in C/C++.

    If you could help me or tell me where I could find any example or something.

  • Convert RTP (OPUS) stream to HLS (AAC) stream using ffmpeg or gstreamer

    27 décembre 2020, par Gagan Bhat

    I currently have an RTP protocol stream in OPUS codec playing locally on rtp ://127.0.0.1:5006

    


    I would like to convert this stream into an HLS protocol with AAC codec (or others if easier) so that it is more accessible to devices with just a browser.

    


    I know that ffmpeg and gstreamer are capable of this but I'm just lost among the various arguments/parameters.

    


    Currently, I have an SDP file that describes my stream (unsure if this is correct, I wrote it after just googling/reading the spec)

    


    v=0
t=0 0
m=audio 5006 RTP/AVP 98
c=IN IP4 127.0.0.1
a=recvonly
a=rtpmap:98 opus/48000/2
a=fmtp:98 stereo=0; sprop-stereo=0; useinbandfec=1c


    


    Any ideas ?