Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (108)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (13266)

  • swr-test : fix u8 zero point.

    26 avril 2012, par Michael Niedermayer

    swr-test : fix u8 zero point.

  • Open USB camera with OpenCV and stream to rtsp server

    12 septembre 2017, par user2594166

    I got a Logitech C920 camera connected via USB to a NVIDIA TX1. I am trying to both stream the camera feed over rtsp to a server while doing some computer vision in OpenCV. I managed to read H264 video from the usb camera in Opencv

    #include <iostream>
    #include "opencv/cv.h"
    #include <opencv2></opencv2>opencv.hpp>
    #include "opencv/highgui.h"

    using namespace cv;
    using namespace std;

    int main()
    {
       Mat img;
       VideoCapture cap;
       int heightCamera = 720;
       int widthCamera = 1280;

       // Start video capture port 0
       cap.open(0);


       // Check if we succeeded
       if (!cap.isOpened())
       {
           cout &lt;&lt; "Unable to open camera" &lt;&lt; endl;
           return -1;
       }
       // Set frame width and height
       cap.set(CV_CAP_PROP_FRAME_WIDTH, widthCamera);
       cap.set(CV_CAP_PROP_FRAME_HEIGHT, heightCamera);
       cap.set(CV_CAP_PROP_FOURCC, CV_FOURCC('X','2','6','4'));

       // Set camera FPS
       cap.set(CV_CAP_PROP_FPS, 30);

       while (true)
       {
           // Copy the current frame to an image
           cap >> img;

           // Show video streams
           imshow("Video stream", img);

           waitKey(1);
       }

       // Release video stream
       cap.release();

       return 0;
    }
    </iostream>

    I also have streamed the USB camera to a rtsp server by using ffmpeg :
    ffmpeg -f v4l2 -input_format h264 -timestamps abs -video_size hd720 -i /dev/video0 -c:v copy -c:a none -f rtsp rtsp://10.52.9.104:45002/cameraTx1

    I tried to google how to combine this two functions, i.e. open usb camera in openCV and use openCV to stream H264 rtsp video. However, all I can find is people trying to open rtsp stream in openCV.

    Have anyone successfully stream H264 rtsp video using openCV with ffmpeg ?

    Best regards
    Sondre

  • The new FOMS : Open Media Developers at OVC

    13 août 2011, par silvia

    Since 2007 I have organised the annual Foundations of Open Media Software (FOMS) developers workshop. Last year it was held for the first time in the northern hemisphere, in fact on the two days straight after the Open Video Conference (OVC). This year I’m really excited to announce that the (...)