Recherche avancée

Médias (91)

Autres articles (79)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (14044)

  • opencv dont receive camera stream

    11 juillet 2022, par Ofek nourian

    I have a simple IP camera connected to a video encoder "barracuda haivision S-280E-SDI"
I can receive the camera feed just fine with vlc, using the folowing URL :

    


    


    rtsp ://10.5.1.2:554

    


    


    then, I tried to play the video with python and opencv, using the following code :

    


    cap = cv2.VideoCapture('rtsp://10.5.1.2:554', cv2.CAP_FFMPEG)

while cap.isOpened():
  ret, frame = cap.read()
  cv2.imshow('frame', frame)
  if cv2.waitKey(1) == ord(1):
    break
cap.release()
cap.destroyALLWindows()


    


    but I get Error message :

    


    


    [rtsp @ 0000219d1e4e580] method SETUP failed : 500

    


    


    why does it happen ? what can I do to fix it ?

    


  • Camera2 API switching camera during recording

    27 juin, par Max Efimov

    I'm working with Camera2 API and in my app it's important to switch the camera during recording. After each camera switch I save video fragment to disk, and after stopping the recording I merge videos into one using -f concat -safe 0 -i listPath -c copy finalPath command of FFmpeg for Android. When I open a separate video fragment, it looks correct, but when I open the merged video, videos recorded on the back camera are rotated 180 degrees. The problem is only in the merged video.

    



    In meta-tag of videos if video recorded on back camera, then "rotate" tag has 90 degrees, otherwise 270 degrees.

    



    As I understood when ffmpeg merges a videos it automatically rotates the video if it has different "rotate" tag in he's metatags.

    



    How I can solve this problem ?

    



    P.S Also I tried to use MP4Parser Library for merging, but it has the same problems.
    
P.P.S. -noautorotate param for ffmpeg does not help me.

    


  • How to switch between rtsp streams of an ip camera without disconnecting from the server for fast switching ?

    16 avril 2021, par MAh2014

    Is there any way to switch between different channels (streams) of an IP camera without disconnecting from the RTSP server on the camera ? Since the URI of each channel is different using VLC or FFmpeg you need to stop the first channel and then using the URI corresponding to the second channel establish the connection once again and start streaming. This seems to be inefficient and incurs switching delay. I was wondering if there exists any way around this ?