Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (38)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (7500)

  • postproc : fix unaligned access

    18 juin 2015, par Andreas Cadhalpun
    postproc : fix unaligned access
    

    QP_store is only 8-bit-aligned, so accessing it as uint32_t causes
    SIGBUS crashes on sparc.
    The AV_RN32/AV_WN32 macros only do unaligned access in the
    HAVE_FAST_UNALIGNED case.

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libpostproc/postprocess.c
  • Revision bc3c6d0a15 : vp9/count_segs : fix out of bounds read don't access mi until mi_{row,col} valid

    3 mai 2013, par James Zern

    Changed Paths :
     Modify /vp9/encoder/vp9_segmentation.c



    vp9/count_segs : fix out of bounds read

    don't access mi until mi_row,col validation has been done

    Change-Id : Ie1be052612cfccb2730dff9281c222bca28bf2c6

  • why can't I access rtsp camera in python ?

    6 septembre 2024, par Come Oh

    I'm trying to access an RTSP camera in Python and get frame information from it.

    &#xA;

    One of the camera options is RTSP authentication, and when I include it, VLC asks for login information. ('[rtsp @ ] method DESCRIBE failed : 401 Unauthorized')

    &#xA;

    If I turn it off, I can access it regardless of ID or PW, but if I turn it on, I can't access it from Python.

    &#xA;

    I verified that it works by putting the same RTSP address, ID, and PW in VLC, and it doesn't contain any symbols like '@' which is a common problem.

    &#xA;

    I used several libraries, including Opencv, ffmpeg, and others, and got the same&#xA;'[rtsp @ ] method DESCRIBE failed : 401 Unauthorized' and only this error appears

    &#xA;

    What could be the cause,,, please help...

    &#xA;

    import cv2&#xA;&#xA;url = "rtsp://username:password@camera_ip:554/stream_path"&#xA;&#xA;cap = cv2.VideoCapture(url)&#xA;&#xA;if not cap.isOpened():&#xA;    print("Failed to open RTSP stream.")&#xA;    exit()&#xA;&#xA;while True:&#xA;    ret, frame = cap.read()&#xA;    if not ret:&#xA;        print("Failed to read frame.")&#xA;        break&#xA;    cv2.imshow(&#x27;RTSP Stream&#x27;, frame)&#xA;    if cv2.waitKey(1) &amp; 0xFF == ord(&#x27;q&#x27;):&#xA;        break&#xA;&#xA;cap.release()&#xA;cv2.destroyAllWindows()&#xA;

    &#xA;

    I tried running the above code and debugging it using the ffmpeg library.

    &#xA;