Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (52)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8492)

  • ffmpeg can play video but not a stream containing the same data

    21 mai 2017, par Robbsen

    This is my first time encountering video codecs/video streaming.

    I am receiving raw h.264 packets over TCP. When I connect to the socket, listen to it and simply save the received data to a file, I am able to play it back using

    ffplay data.h264

    However, when I try to directly play it from the stream without saving it, using

    ffplay tcp://addr:port

    all I get is the error

    Invalid data found when processing input

    Why is that ?

  • Using python with ffmpeg to query video data from rtsp in complete frame

    1er avril 2020, par CDY

    Currently, I am trying to use python with ffmpeg to read video data from server.

    



    Here is my command :

    



    command = ["ffmpeg",
       "-c:v", "h264",     
       "-rtsp_transport", "tcp",
       "-i", in_stream,    
       "-c:v", "copy",     
       "-an", "-sn",       
       "-f", "avi",       
       "-"]


    



    I will use this command to query data from server and put data into queue.

    



    One question is, every time the data I query from server which is not a complete frame. It is just a part of encoding data.

    



    If I want to get data as a complete frame. How can I change my command and code ?

    



    Thank you very much

    


  • Determining size of data[0] in AVFrame of FFMPEG

    20 juillet 2020, par user2742299

    I am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :

    


    size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;
        
memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);


    


    I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?