Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (14)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3534)

  • Merge commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’

    10 novembre 2015, par Hendrik Leppkes
    Merge commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’
    

    * commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’ :
    mov : detect cover art pictures by content

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavformat/mov.c
  • avcodec/xbmenc : xbm Lower memory use

    19 janvier 2021, par Jose Da Silva
    avcodec/xbmenc : xbm Lower memory use
    

    Two minor memory improvements.

    First bug reduces memory needed to about 6/7 the needed amount, which
    allows you to host almost 7 pictures in the same memory needed for 6
    Second is a recalculation of the total additional memory for headers etc.

    size = avctx->height x (linesize * 6 + 1) + (31+32+38+4+1)
    Subject : [PATCH 2/3] avcodec/xbmenc : xbm Lower memory use

    Small 6/7th size memory reduction.
    size = avctx->height x (linesize * 6 + 1) + (31+32+38+4+1)

    Signed-off-by : Joe Da Silva <digital@joescat.com>

    • [DH] libavcodec/xbmenc.c
  • OpenCV cant open rtsp stream of hikvision cameras ?

    25 août 2022, par Smadar

    I'm using hikvision camera, and tried to open the rtsp stream using OpenCV videoCapture with cv2.CAP_FFMPEG, but OpenCV failed to open it.&#xA;I open the stream from VLC and it is working fine.&#xA;The configuration parameters in the camera dashboard was changed as well. The encoding parameter was changed from H265 to H264, the resolution also has changed to a lower values (1280*720 - the lowest, also tried full HD), the bitrate was changed as well .&#xA;I tried to open the stream in two ways -&#xA;The first way :

    &#xA;

    feed = cv2.VideoCapture(&#x27;rtsp://user:password@IP:554/Streaming/Channels/1&#x27;, cv2.CAP_FFMPEG)&#xA;print(&#x27;FEED IS OPEN ? &#x27;, feed.isOpened())&#xA;if feed.isOpened():&#xA;    print(&#x27;IM HERE&#x27;)&#xA;    frame_status, frame = feed.read()&#xA;    print(frame_status)&#xA;    print(frame.shape[0])&#xA;

    &#xA;

    The second way :

    &#xA;

    cap = cv2.VideoCapture()&#xA;&#xA;cap.open("rtsp://user:password@IP:554/Streaming/Channels/1")&#xA;print(&#x27;IM HERE&#x27;, cap.isOpened())&#xA;while(True):&#xA;     # Capture frame-by-frame&#xA;    print(&#x27;IM HERE&#x27;)&#xA;    ret, frame = cap.read()&#xA;    print(&#x27;RET: &#x27;, ret)&#xA;    print(type(frame))&#xA;    print(&#x27;IM HERE&#x27;)&#xA;    # Our operations on the frame come here&#xA;    #gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)&#xA;&#xA;    # Display the resulting frame&#xA;    print(frame.shape[0])&#xA;    # cv2.imshow(&#x27;frame&#x27;,ret)&#xA;&#xA;    if cv2.waitKey(1) &amp; 0xFF == ord(&#x27;q&#x27;):&#xA;        break&#xA;&#xA;# When everything done, release the capture&#xA;cap.release()&#xA;cv2.destroyAllWindows()&#xA;

    &#xA;

    There is also check ping and there is a connection to the camera.

    &#xA;

    I will really appreciate any help here in trying of figure this out.&#xA;Thank you all.

    &#xA;