Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (11045)

  • Watermark video by ffmpeg and hardware accelerator

    17 avril 2018, par Ehsan Gholami

    I use a p4000 card and ffmpeg with all requirements (driver , toolkit , cuda compile)
    I want to put watermark on the video by this command

    ./bin/ffmpeg -hwaccel cuvid -c:v h264_cuvid -i input.mp4 -i input.png -filter_complex "overlay=10:10" -c:v h264_nvenc output.mp4

    but I encounter this error

    Impossible to convert between the formats supported by the filter 'graph 0 input from stream 0:0' and the filter 'auto_scaler_0'
       Error reinitializing filters!
       Failed to inject frame into filter network: Function not implemented
       Error while processing the decoded data for stream #1:0

    Thanks for the advice

  • FFMPEG synchronize concatenated videos

    19 décembre 2019, par Javier Urrestarazu

    I am trying to concatenate horizontally two UDP streams. I need both streams to be fully synchronized, but I’m experiencing that one of the two streams runs slightly faster than the other one, even though they have the same framerate.

    This is what I have tried so far :

    First stream :

    ffmpeg -f gdigrab -s 800x600 -r 8 -i desktop -qscale 0 -vcodec libx264 -f mpegts udp://127.0.0.1:51000

    Second stream :

    ffmpeg -f fbdev -framerate 8 -i /dev/fb0 -f mpegts udp://192.166.1.1:52000

    Concatenation :

    ffmpeg -i udp://127.0.0.1:52000 -i udp://192.166.1.1:52000 -filter_complex "[0:v]scale=900:600[left];[1:v]scale=900:600[right];[left][right]hstack" -f mpegts output.ts

    Any advice on how to improve the synchronization ?

  • ffmpeg display only video in Android

    19 février 2014, par Whoami

    I am Writing video player in android. So far i could able to capture the frames, with the help of av_read_frame and avcodec_decode_video2, and updating to SDL2.0. I have followed dranger tutorial02.c http://dranger.com/ffmpeg/ .

    Sudo Code is :

    while (1)

      {
            1. Read packet
            2. check if video frame; if not Go to Step 3.
                   2.1  if video frame, then update with SDL_UpdateYUVTexture,
            3. Handle SDL Event
            4. Clear the Renderer.
            5. Present Renderer.
      }

    I wonder, do i need to take care of synchronization of video, dts/pts calculation while i need only to display video ?

    This scenario works well in the samsung, but not in other mobiles.

    What woud be your advice ?