Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (71)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9799)

  • FFMPEG split video is not working properly

    12 juillet 2018, par user6250770

    I am trying to split video then into frames. I am passing starting time and ending time dynamically.

    for ex :

    ffmpeg -i /Users/mypc/Documents/Avatar/input.mp4 -ss 00:00:39.799 -t 00:00:42.039  /Users/mypc/Downloads/testing/output.mp4

    It should cut the video from 39th second to 42 second. Approximately 3 seconds. But, it’s splitting more than 3 seconds. I am stuck why it’s behaving like that.

    Am i missing something in my command or anything ?

    Please suggest

    Screen shot of my terminal attached :

    enter image description here

  • How to retrieve FFMPEG (called from OpenCV) Python decoding error

    15 décembre 2020, par user9784065

    While trying to read a video stream form an IP camera using :

    



    stream = cv2.VideoCapture(src)
(grabbed, frame) = stream.read()


    



    The grabbed returns True while sometimes the frames are corrupted (probably due to high CPU load). An internal Opencv error like the following is showing on the terminal :

    



    [h264 @ 0x25e99400] error while decoding MB 87 29, bytestream -5


    



    Is there a way to catch this error ? Please note that I tried the obvious try:except with cv2.error etc. In such case of corrupted frame it would be preferable to restart the connection to the camera.

    


  • seekFunction in avio_alloc_context

    3 février 2018, par Javier Ramírez

    I am trying to make my video file restart from the beginning. The data of my file, are being obtained from a stream, through an istream object.

    This is my seekFunction :

    int64_t seekFunction(void *opaque,int64_t offset,int whence){
     istream *me = reinterpret_cast (opaque);
     if(key == 'R')me->seekg(0);
     return me->tellg();
    }

    But it does not work. In fact, I do not know how to use this function, and there is very little information. How should this function be used, so that my video restarts ?

    If only I use

    av_seek_frame(pFormatCtx,0,0,AVSEEK_FLAG_ANY);
    avcodec_flush_buffers(pFormatCtx);

    in my terminal it indicates :

    [avi @ 0x1963e80] Seek failed.

    What should I do to restart my video that I opened from a stream ?