Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (67)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • 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" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (6581)

  • How to continuously extract video frames from streaming RTMP using avconv / ffmpeg ?

    5 février 2014, par mvbl fst

    We're dealing with streaming video on RTMP and my goal is to extract frames from the stream at a given interval, e.g. every 1 second.

    Currently I run a command in a loop, which takes a frame and exports it as base64 JPEG :

    avconv -i <url> -y -f image2 -ss 3 -vcodec mjpeg -vframes 1 -s sqcif /dev/stdout 2>/dev/null | base64 -w 0
    </url>

    But each of these processes is long (takes a few seconds — which adds even more delay on streaming video that's not real time already). I am wondering if there is a way to make avconv or ffmpeg to extract frames at an interval (in seconds or frames) and either save as a file or dump to stdout.

    I would really appreciate your help !

  • Best approach to get RTSP streaming into web browser from IP Camera ?

    21 octobre 2023, par Whoami

    Is it possible to get the RTSP Streaming data into the web browser ?

    &#xA;&#xA;

    Below are some of my findings. Kindly correct me if I am wrong ?

    &#xA;&#xA;

      &#xA;
    1. Only Mac OS, and Safari supports RTSP Live Streaming.

    2. &#xA;

    3. HTML 5 video does not support RTSP.

    4. &#xA;

    5. I can use the VLC plugin, but I don't want to use that.

    6. &#xA;

    &#xA;&#xA;

    Possibility of mixing ffmpeg and websocket ?

    &#xA;&#xA;

    Assume my IP camera is connected with Ethernet.

    &#xA;&#xA;

    In the client machine :

    &#xA;&#xA;

      &#xA;
    1. I run ffmpeg to get the data from server (ie : IP)
    2. &#xA;

    3. Client machine runs websocket.
    4. &#xA;

    5. Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example : yuv).
    6. &#xA;

    7. Now, i have to send this image to browser through websocket.
    8. &#xA;

    &#xA;&#xA;

    Question :

    &#xA;&#xA;

      &#xA;
    1. It is the right approach ?
    2. &#xA;

    3. How can I get the decoded image from ffmpeg into the browser ?
    4. &#xA;

    &#xA;&#xA;

    I might be wrong in different places. Kindly provide input.

    &#xA;

  • Best approach to get RTSP streaming into web browser from IP Camera ?

    12 mars 2016, par Whoami

    Is it possible to get the RTSP Streaming data into the web browser ?

    Below are some of my findings. Kindly correct me if I am wrong ?

    1. Only Mac OS, and Safari supports RTSP Live Streaming.

    2. HTML 5 video does not support RTSP.

    3. I can use the VLC plugin, but I don’t want to use that.

    Possibility of mixing ffmpeg and websocket ?

    Assume my IP camera is connected with Ethernet.

    In the client machine :

    1. I run ffmpeg to get the data from server (ie : IP)
    2. Client machine runs websocket.
    3. Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example : yuv).
    4. Now, i have to send this image to browser through websocket.

    Question :

    1. It is the right approach ?
    2. How can I get the decoded image from ffmpeg into the browser ?

    I might be wrong in different places. Kindly provide input.