Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (110)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16555)

  • FFmpeg change output to specific pixel format ?

    22 mars 2021, par R.martinez

    I am working on an openCV project, I have a stable running variant that is taking input from an HDMI capture card and using FFmpeg to output to a v4L2 loopback device (/dev/video0) my openCV project takes its input from /dev/video0.

    



    The issue comes when I try to use an rtsp feed, the following command works to send the feed to my loopback device :

    



    ffmpeg -rtsp_transport tcp -i rtsp://@192.168.1.27:552//stream1 -acodec rawvideo -vcodec rawvideo -f v4l2 /dev/video0


    



    And I am able to view that feed with VLC (on /dev/video0) no problem, however when I feed it to my openCV app, I get the following error :

    



    VIDEOIO ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV


    



    When I run v4l2-ctl -d /dev/video0 --all on both working and non working variants this is what I get :

    



    Working output

    



    Format Video Output:
Width/Height      : 1920/1080
Pixel Format      : 'UYVY'
Field             : None
Bytes per Line    : 3840
Size Image        : 4147200
Colorspace        : sRGB
Transfer Function : Default
YCbCr Encoding    : Default
Quantization      : Default
Flags             : 


    



    Nonfunctional output

    



    Format Video Output:
Width/Height      : 1280/720
Pixel Format      : 'YU12'
Field             : None
Bytes per Line    : 1280
Size Image        : 1382400
Colorspace        : sRGB
Transfer Function : Default
YCbCr Encoding    : Default
Quantization      : Default
Flags             : 


    



    So I am concluding that the pixel format 'YU12' is not compatible with openCV while format 'UYVY' is. If it's possible, how do I set the output of FFmpeg to be in pixel format UYVY when the input is YU12 ?

    


  • Revision 789ae447f8 : Fix high bit depth assembly function bugs The high bit depth build failed while

    4 février 2015, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_highbd_sad4d_sse2.asm


     Modify /vp9/encoder/x86/vp9_highbd_subpel_variance.asm



    Fix high bit depth assembly function bugs

    The high bit depth build failed while building for 32bit target.
    The bugs were in vp9_highbd_subpel_variance.asm and
    vp9_highbd_sad4d_sse2.asm functions. This patch fixed the bugs,
    and made 32bit build work.

    Change-Id : Idc8e5e1b7965bb70d4afba140c6583c5d9666b75

  • failed to set frame number in opencv in cpp

    28 février 2018, par Madhu Nadendla

    I am trying to set frame position of opened videofile using OpenCV in C++ but it returns 0.

    solution 1

    bool success = capture.set(CV_CAP_PROP_POS_FRAMES, noFrame);

    double frameRate = capture.get(CV_CAP_PROP_FPS);