Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (13379)

  • ffmpeg exec command not running in nginx rtmp

    22 février 2017, par evan

    I am using nginx and rtmp module to stream live hls and mpeg-dash.
    here is my rtmp command in nginx .conf

    rtmp {
    server {
       listen 1936;


       application mypull {
       live on ;
       meta copy;
       allow play all;

       pull rtmp://184.72.239.149/vod/BigBuckBunny_115k.mov name=test live=1;


       exec_push   /usr/bin/ffmpeg -re -i rtmp://localhost:1936/mypull/$name -vcodec libx264 -acodec libmp3lame -f flv rtmp://localhost:1936/hls/$name;


    }


    application dash {
           live on;
           dash on;
           dash_path /tmp/dash;
           dash_nested on;
           dash_fragment 5s;
           dash_playlist_length 30s;
       }
        application hls {
           live on;
           hls on;
       hls_playlist_length 30s;
       hls_fragment 5s;
           hls_path /tmp/hls;
       }
    }
    }

    but it is not playing. it seems that the ffmpeg command is not even running. and the hls and dash folders are empty. could anyone help me with it ?

  • ffmpeg exec command not running in nginx rtmp

    5 juin 2020, par evan

    I am using nginx and rtmp module to stream live hls and mpeg-dash.
here is my rtmp command in nginx .conf

    



    rtmp {
server {
    listen 1936;


    application mypull {
    live on ;
    meta copy;
    allow play all;

    pull rtmp://184.72.239.149/vod/BigBuckBunny_115k.mov name=test live=1;


    exec_push   /usr/bin/ffmpeg -re -i rtmp://localhost:1936/mypull/$name -vcodec libx264 -acodec libmp3lame -f flv rtmp://localhost:1936/hls/$name;


}


application dash {
        live on;
        dash on;
        dash_path /tmp/dash;
        dash_nested on;
        dash_fragment 5s;
        dash_playlist_length 30s;
    }
     application hls {
        live on;
        hls on;
    hls_playlist_length 30s;
    hls_fragment 5s;
        hls_path /tmp/hls;
    }
}
}


    



    but it is not playing. it seems that the ffmpeg command is not even running. and the hls and dash folders are empty. could anyone help me with it ?

    


  • How to webstream into OpenCV ?

    9 avril 2018, par Bogdan

    I am trying to stream a webcam video to openCV.
    The sending computer sends using

    ffmpeg -f dshow -i video="webcam" -crf 30 -preset ultrafast -vcodec libx264 -tune zerolatency -b 900k  -f rtsp -rtsp_transport tcp rtsp://mymachine:8888/live.sdp

    which I can receive using

    ffplay -fflags nobuffer  -rtsp_flags listen rtsp://mymachine:8888/live.sdp?tcp

    (I have to start the ffplay before I start ffmpeg)

    In OpenCV :

    VideoCapture capturedVideo = new VideoCapture();
    boolean isOpened = capturedVideo.open("rtsp://mymachine:8888/live.sdp?tcp");
    capturedVideo.read(cameraMat);

    without success : isOpened returns false after a timeout.