Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (22)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • 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 (...)

  • 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 (3123)

  • Protect files from direct access by url on iis server and MVC APP with identity

    19 octobre 2022, par Ahmed Ramadan

    i have MVC app with identity authentication
this site business is playing video which edited by ffmpeg .

    


      <video class="video-js vjs-default-skin" width="640" height="360" controls="controls">&#xA;    <source src="video\index.m3u8" type="application/x-mpegURL">&#xA;</source></video>&#xA;

    &#xA;

    i want to prevent direct access from browser to this link , unless user has session&#xA;https://localhost/vide/index.m3u8

    &#xA;

    i tired this code for config file

    &#xA;

    &#xA;        <authorization>&#xA;            <deny users="?"></deny>&#xA;        </authorization>&#xA;    &#xA;

    &#xA;

    but i still be able to access the file and not able to aceess folder

    &#xA;

    ex :-

    &#xA;

    https://localhost/video/index.m3u8 &#xA;

    &#xA;

    accessible

    &#xA;

        https://localhost/video&#xA;

    &#xA;

    Not accessible !

    &#xA;

    i tried this link , but still not get it&#xA;how to deny user to access sub folders and file ?

    &#xA;

  • why can't 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;

  • 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;