Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (102)

  • 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

  • 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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (7922)

  • avformat/matroskadec : Add support for FlagTextDescriptions

    16 février 2021, par Andreas Rheinhardt
    avformat/matroskadec : Add support for FlagTextDescriptions
    

    This is the equivalent of the WebM "D_WEBVTT/DESCRIPTIONS" and is
    therefore only exported for subtitles.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroska.h
    • [DH] libavformat/matroskadec.c
  • avformat/matroskaenc : Add support for FlagTextDescriptions

    16 février 2021, par Andreas Rheinhardt
    avformat/matroskaenc : Add support for FlagTextDescriptions
    

    This is the Matroska equivalent of D_WEBVTT_DESCRIPTIONS and is
    therefore only enabled for subtitles.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • How to receive upd stream with OpenCV ?

    17 février 2021, par Legion

    I need to receive my stream from Jetson Nano to my OpenCV program on my PC (Windows 10).

    &#xA;

    Ok, I stream camera from my device (Jetson Nano) using :

    &#xA;

    cv::VideoWriter gst_udpsink("appsrc ! video/x-raw, format=BGR ! queue ! videoconvert ! video/x-raw, format=BGRx ! nvvidconv ! nvv4l2h264enc insert-vui=1 ! video/x-h264, stream-format=byte-stream ! h264parse ! rtph264pay pt=96 config-interval=1 ! udpsink host=224.1.1.1 port=5000 auto-multicast=true", cv::CAP_GSTREAMER, 0, fps, cv::Size (width, height));&#xA;

    &#xA;

    I installed OpenCV with Gstreamer(following that ) and tried that command

    &#xA;

    c:\gstreamer\1.0\msvc_x86_64\bin\gst-launch-1.0.exe  udpsrc uri=udp://224.1.1.1:5000 auto-multicast=true ! application/x-rtp, media=video, encoding-name=H264 ! rtpjitterbuffer latency=300 ! rtph264depay ! decodebin ! d3dvideosink&#xA;

    &#xA;

    it is working, unfortunately, no matter what latency I set I still got quite a big lag.&#xA;When I try to use OpenCV

    &#xA;

    cv::VideoCapture cap("udpsrc uri=udp://224.1.1.1:5000 auto-multicast=true ! application/x-rtp, media=video, encoding-name=H264 ! rtpjitterbuffer latency=300 ! rtph264depay ! decodebin ! videoconvert ! video/x-raw, format=BGR ! appsink", cv::CAP_GSTREAMER);&#xA;

    &#xA;

    I get

    &#xA;

    [ WARN:0] global F:\Code\opencv_4.5.1\opencv-4.5.1\modules\videoio\src\cap_gstreamer.cpp (734) cv::GStreamerCapture::open OpenCV | GStreamer warning: Error opening bin: no element "udpsrc"&#xA;[ WARN:0] global F:\Code\opencv_4.5.1\opencv-4.5.1\modules\videoio\src\cap_gstreamer.cpp (501) cv::GStreamerCapture::isPipelinePlaying OpenCV | GStreamer warning: GStreamer: pipeline have not been created&#xA;

    &#xA;

    And .isOpened() give me false.&#xA;I’m don’t know why did I install something wrong ?

    &#xA;

    I added everything to my PATH as instructed

    &#xA;

    image

    &#xA;

    I also tried to use FFmpeg :

    &#xA;

    setenv ("OPENCV_FFMPEG_CAPTURE_OPTIONS", "protocol_whitelist;file,rtp,udp", 1);&#xA;cap = cv::VideoCapture("test.sdp", cv::CAP_FFMPEG);&#xA;

    &#xA;

    I get :

    &#xA;

    [rtp @ 0000014dc1f83bc0] Protocol &#x27;rtp&#x27; not on whitelist &#x27;file,crypto,data&#x27;!&#xA;

    &#xA;

    I have no setenv() so I tried this and it seems that’s a problem, any idea ?

    &#xA;

    Shell equivalent

    &#xA;

    ffplay myFile.sdp -protocol_whitelist file,udp,rtp -fflags nobuffer&#xA;

    &#xA;

    Is working successfully (with delay but successfully).

    &#xA;

    I'm willing to change anything to make it work ! If it's possible with FFmpeg/GStreamer/vlclib, I can change the Jetson side as well, thanks for any help !

    &#xA;