Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (90)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

Sur d’autres sites (5653)

  • Does ffmpeg supported KLV metadata ?

    9 février 2016, par ransh

    Is ffmpeg metadata, which is also described in :
    http://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata
    also supported MISB standard UAV metadata 601.5 ?
    Is it same as KLV ?

    Thanks,
    Ran

  • Does ffmpeg supported KLV metadata ?

    15 mai 2020, par ransh

    Is ffmpeg metadata, which is also described in :
http://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata
also supported MISB standard UAV metadata 601.5 ?
Is it same as KLV ?

    



    Thanks,
Ran

    


  • Reading from RTSP stream via opencv+ffmpeg results in "method SETUP failed : 501 Not Implemented"

    7 novembre 2023, par bearyTheBear

    I have a camera setup and running in my local network.
I can see the video stream via VLC without any issues.
Now I am trying to run the following code to also observe the stream with python + opencv.

    


    I am using :

    


      

    • Python 3.11
    • 


    • opencv-python 4.8.1.78
    • 


    


    import cv2

cap = cv2.VideoCapture(
    "rtsp://192.168.234.127:8554/h264", 
)

while cap.isOpened():
    status, frame = cap.read()
    
    cv2.namedWindow("frame", cv2.WINDOW_NORMAL)
    cv2.imshow("frame", frame)
    
    if cv2.waitKey(20) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()


    


    This results in the script being stuck at cap.read() with the following error occuring in the background : [rtsp @ 0000020008b7cd40] method SETUP failed: 501 Not Implemented. Note that cap.isOpened() returns True.

    


    I tried :

    


      

    • downgrading to Python 3.11 from 3.12
    • 


    • running this in jupyter notebook
    • 


    • running this directly from script
    • 


    • force reinstalling opencv-python
    • 


    • using "rtsp ://192.168.234.127:8554/jpeg" instead of "rtsp ://192.168.234.127:8554/h264"

        

      • note that both methods work in the VLC player
      • 


      


    • 


    


    edit :

    


      

    • simplified code, same result.
    •