Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (108)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (10107)

  • avcodec/h264_ps : Show VUI and SPS overread messages just once per frame thread

    16 janvier 2020, par Michael Niedermayer
    avcodec/h264_ps : Show VUI and SPS overread messages just once per frame thread
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_ps.c
    • [DH] libavcodec/h264_ps.h
  • Not able to show RTSP stream with Angular

    15 mai 2020, par Q.Rey

    i'm working on a web application with angular where i need to show an rtsp stream inside my window.&#xA;I'm using JSMpeg player related to this topic : Not able to Show live camera RTSP streaming with Angular.

    &#xA;&#xA;

    For my websocket i used the node websocket library and i runned it like this in my cmd : node websocket-relay.js supersecret 8081 8082

    &#xA;&#xA;

    It detect each connection i make on it.

    &#xA;&#xA;

    Then for the conversion part i used FFMPEG where I convert a h264 format to mpegts (mpegvideo1 gave me an error)&#xA;I run it like this :

    &#xA;&#xA;

    ffmpeg -i "rtsp://myurl/media.smp" -vcodec h264 -f mpegts -max_muxing_queue_size 9999 -b 800k -r 30 http://localhost:8081/supersecret/640/480/

    &#xA;&#xA;

    For the angular part I have this :

    &#xA;&#xA;

    @ViewChild(&#x27;streaming&#x27;, {static: true}) streamingcanvas: ElementRef; &#xA;&#xA;constructor( ... ) { }&#xA;&#xA;ngOnInit() {&#xA;    ....&#xA;    let player = new JSMpeg.Player(&#x27;ws://localhost:8081/supersecret&#x27;, {&#xA;        canvas: this.streamingcanvas, autoplay: true, audio: false, loop: true&#xA;      })&#xA;}&#xA;&#xA;

    &#xA;&#xA;

    Result in my window : &#xA;Nothing happen in my canvas even if the websocket detect a connexion

    &#xA;&#xA;

    What did i missed to make it works and get a real video stream ?

    &#xA;&#xA;

    Thanks for help

    &#xA;&#xA;

    EDIT : My first ffmpeg command was wrong, only the audio was sent, now i got this :

    &#xA;&#xA;

    ffmpeg -i "rtsp://myurl/media.smp" -vcodec h264 -f mpegts -codec:v mpeg1video -s 640x360 -b: 700k -r 25 -bf 0 -codec:a mp2 -ar 44100 -ac 1 -b:a 64k -max_muxing_queue_size 9999 http://localhost:8081/supersecret/640/360/&#xA;

    &#xA;&#xA;

    It still doesnt work but the canvas is not black anymore

    &#xA;

  • FFmpeg : Adding multiple overlays to the video with the fade in/out effect. Command works but the images ( overlays ) doesn't show in the video

    12 décembre 2019, par ArmKh

    I’m trying to add multiple overlays to the video and fade in/out them separately. So, the command works without any issue but in the video, I can’t see the overlay images

    Here is the command with which I’m trying to do it

    ffmpeg -y -i video.mp4 -loop 1 -i text1.png -loop 1 -i text2.png -loop 1 -i text3.png -loop 1 -i text4.png -loop 1 -i text5.png -filter_complex "
    [1]fade=st=0:d=4:alpha=1,fade=out:st=2:d=1:alpha=1,trim=0:3,setpts=PTS+5/TB[ovr1];
    [2]fade=st=0:d=4:alpha=1,fade=out:st=2:d=1:alpha=1,trim=0:3,setpts=PTS+10/TB[ovr2];
    [3]fade=st=0:d=4:alpha=1,fade=out:st=2:d=1:alpha=1,trim=0:3,setpts=PTS+15/TB[ovr3];
    [4]fade=st=0:d=4:alpha=1,fade=out:st=2:d=1:alpha=1,trim=0:3,setpts=PTS+20/TB[ovr4];
    [5]fade=st=0:d=4:alpha=1,fade=out:st=2:d=1:alpha=1,trim=0:3,setpts=PTS+25/TB[ovr5];
    [0:v][ovr1]overlay=0:0:enable='between(t,0,5)'[base1];
    [base1][ovr2]overlay=0:(main_h-overlay_h)/2:enable='between(t,5,10)'[base2];
    [base2][ovr3]overlay=0:(main_h-overlay_h)/2:enable='between(t,10,15)'[base3];
    [base3][ovr4]overlay=0:(main_h-overlay_h)/2:enable='between(t,15,20)'[base4];
    [base4][ovr5]overlay=0:(main_h-overlay_h)/2:enable='between(t,20,25)'[out]" -map "[out]" -c:v libx264 -c:a copy -flags +global_header -shortest with_overlays.mp4

    Can you please help me to find what am I doing wrong ?