Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Changer le statut par défaut des nouveaux inscrits

    26 décembre 2015, par

    Par défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
    Il est possible de changer ce statut par défaut. en "rédacteur".
    Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
    Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6097)

  • Unable to stream only audio using ffmpeg to Wowza RTSP Push Streaming Server

    8 août 2017, par Faizuddin Mohammed

    I have tried many options with ffmpeg to be able to stream only audio to Wowza Media Server.

    ffmpeg -f dshow -re -i audio="Microphone (Camera Audio)" -f rtsp "rtsp://xxxxx:kkkkk@xxxxxx.entrypoint.cloud.wowza.com:1935/app-xxxx/yyyyy.sdp"

    I’m able to write to an MP3 file, but when I try and do this rtsp stream, no data is being passed.

    I get an output that’s like : size=N/A time=00:00:09.00 bitrate=N/A

    What am I missing or is this not the way to do it ?

  • Raspberry Pi and FFMpeg live streaming video to backend Node.js server, but how do I deliver it to the front end ?

    2 août 2023, par qwet142

    I'm attempting this setup to live stream video from a Raspberry Pi to a publicly available website, and from the backend server using Node.js and Express, I would like to serve it to the front end with minimal latency available to many viewers (will be hosted somewhere like Netlify to handle distribution).

    


    WebRTC is too complex for my use case and timeframe. HLC appears to have too high a latency as I need <4s consistently. I would like to something compatible with Node.js. I am a beginner in this domain, familiar only with general programming and web development.

    &#xA;

  • How to use the video datastreaming I get from nginx server ?

    31 janvier, par Jennie Tsai

    I have three nodes in my network :&#xA;dataServer --- node1 --- node2.&#xA;My video data "friends.mp4" is saved on dataServer. I started both dataServer and node2 as rtmp-nginx servers. I use ffmpeg on node1 to pull datastreaming on dataServerand and push the converted datastreaming to the application "live" on node2.&#xA;Here's my configuration of nginx.conf for node2.

    &#xA;

    worker_processes  1;&#xA;events {&#xA;    worker_connections  1024;&#xA;}&#xA;&#xA;rtmp {&#xA;    server {&#xA;&#xA;    listen 1935;&#xA;&#xA;    chunk_size 4000;&#xA;&#xA;application play {&#xA;        play /usr/local/nginx/html/play;&#xA;    }&#xA;&#xA;application hls {&#xA;        live on;&#xA;        hls on;&#xA;        hls_path /usr/local/nginx/html/hls;&#xA;    hls_fragment 1s;&#xA;    hls_playlist_length 4s;&#xA;    }&#xA;&#xA;application live  &#xA;    {&#xA;        live on; &#xA;    allow play all;&#xA;    }&#xA;}&#xA;}&#xA;

    &#xA;

    I want to run this python code to recognize the faces in friends.mp4 :

    &#xA;

    import cv2&#xA;&#xA;vid_capture=cv2.VideoCapture("rtmp://127.0.0.1:1935/live")&#xA;face_detect = cv2.CascadeClassifier(&#x27;./haarcascade_frontalface_default.xml&#x27;)&#xA;if (vid_capture.isOpened() == False):&#xA;    print("Error opening the video file")&#xA;else:&#xA;    fps = vid_capture.get(5)&#xA;    print("Frames per second : ", fps,&#x27;FPS&#x27;)&#xA;    frame_count = vid_capture.get(7)&#xA;    print(&#x27;Frame count : &#x27;, frame_count)&#xA;&#xA;while(vid_capture.isOpened()):&#xA;    ret, frame = vid_capture.read()&#xA;    if ret == True:&#xA;        gray = cv2.cvtColor(frame, code=cv2.COLOR_BGR2GRAY)&#xA;        face_zone = face_detect.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=3)&#xA;        for x, y, w, h in face_zone:&#xA;            cv2.rectangle(frame, pt1 = (x, y), pt2 = (x&#x2B;w, y&#x2B;h), color = [0,0,255], thickness=2)&#xA;            cv2.circle(frame, center = (x &#x2B; w//2, y &#x2B; h//2), radius = w//2, color = [0,255,0], thickness = 2)&#xA;        cv2.imshow(&#x27;Frame&#x27;, frame)&#xA;        key = cv2.waitKey(50)&#xA;        if key == ord(&#x27;q&#x27;):&#xA;            break&#xA;    else:&#xA;        break&#xA;vid_capture.release()&#xA;cv2.destoryAllWindows()&#xA;

    &#xA;

    But I can't do it because cv2.VideoCapture can not get the data streaming from rtmp://127.0.0.1:1935/live. Maybe it is because this path is not a file. How can I get the video streaming received by the nginx server and put it to my openCV model ? Is there a way that I just access the dataStreaming received by the nginx server and make it a python object that openCV can use ?

    &#xA;