Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (54)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6589)

  • Cannot Play RTSP Streams From the Internet

    17 avril 2023, par jnnks

    I am trying to receive an rtsp :// stream from the internet. There are many example streams running, but I cannot receive any of them.
ffplay and VLC both fail to receive data. I tried both UDP and TCP with various urls with no success.
Streaming from a local rtsp server with aler9/rtsp-simple-server Docker container works fine.

    


    This is the command I use to watch the stream :

    


    ffplay rtsp://rtsp.stream/pattern


    


    VLC fails with :

    


    [00007f58640015f0] satip stream error: Failed to connect to RTSP server rtsp.stream:554
[00007f58640015f0] access_realrtsp stream error: cannot connect to rtsp.stream:554


    


    What else can I try ?

    


  • Is there a way if a video file has pixelation in FFmpeg ?

    14 novembre 2019, par A Person

    I am trying to identify if a video file has pixelation or not,

    Currently, I have a watch folder where videos are dropped, I have a trigger every 120 seconds that check the folder to see if there are any video files.
    If there is a file, it uses MediaInfo command-line to extract the encoding of the video and audio.
    I also use ffprobe on a video to see if it throws out an error like moov atom not found to know if the video is corrupted.

    However, I want to be able to tell if a video file has a pixelation. I know that I can use str, std, to print out the debug logs.

    However, I am finding it difficult to find documentation on how to detect pixelation.

    Do you guys know if there a way to tell that a video file may have pixelation, even through a log output of the video ?

    I am already running a script that reads a log and finds information on the log to tell me about packet drops in a stream, so if you know how I output such log that tells if there is pixelation, or if the debug log has certain information that tells this, please let me know.

  • C++ FFMPEG decoder gives -22

    15 mars 2016, par KillerZefi

    I have implemented a video streaming server (video : MPEG1, network : UDP), which seem to be working (I can watch the videos using VLC).

    I want to implement a client for decoding and I’m using this code : FFmpeg decode raw buffer with avcodec_decode_video2

    The problem is, that I always get -22 for nres and 0 for framefinished. I also had a client, that I implemented earlier, and it had the very same problem. The code for calling my method :

    uint8_t inbuf[65500];
    memset(inbuf, 0, size + FF_INPUT_BUFFER_PADDING_SIZE);
    memcpy(inbuf, recv_buffer->data(), size);
    decoder2.decodeStreamData(inbuf, size + FF_INPUT_BUFFER_PADDING_SIZE);

    Any hints for the cause of the problem ? Or can I find the description of this magical -22 ?