Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (62)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8391)

  • 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 ?