Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (57)

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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9995)

  • Use FFSERVER's C API to receive feed at an Android Client

    17 mai 2016, par user3159395

    I want to stream live feed of a device like PC to an Android Client using RTSP protocol. Now I know this can be achieved using "ffmpeg" and "ffserver". But I wish to receive the stream frame by frame becuase I have process ( some image processing ) each frame. Thus, I am guessing I need to use ffserver’s C API to get frame one by one.

    1. Does ffserver have a C API ?
    2. If answer to 1. was yes, please support your answer with a concise example, perhaps simple C program to get frames from a URL feed.
    3. Is any special configuration needed for RTSP protocol ?

    Please help me as I have already searched thoroughly.

  • Method describe failed : 404 Client error in python

    13 février 2020, par ygHong
    import cv2
    cap = cv2.VideoCapture('rtsp://192.168.0.17:7779',cv2.CAP_FFMPEG)
    ret, frame = cap.read()

    while ret:
       frame = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
       cv2.imshow('frame', frame)
       # do other processing on frame...



       ret, frame = cap.read()
       if (cv2.waitKey(1) & 0xFF == ord('q')):
           break

    cap.release()
    cv2.destroyAllWindows()

    VLC failed to read the movie streaming.

    Terminates without any errors.

    But in jupyternotebook Promt says ’method DESCRIBE failed : 404 Client error’

  • Client Side File Upload

    19 août 2019, par Jay

    I’m trying to get the src path from a client side upload.

    What part of this console log is the path to the file ?
    The end goal is to use this file with ffmpeg so I need a clean path.

     onChangeHandler = event => {
       console.log(event.target.files[0]);
     };

           <input type="file" classname="file" />

    enter image description here