Recherche avancée

Médias (91)

Autres articles (78)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • 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

Sur d’autres sites (7912)

  • Synchronise video stream + eye tracker

    19 avril 2022, par Денис Черный

    I have quite a little experience with streaming video.
I am currently working on the following task :
I need to synchronize the streaming video (currently it is mpeg ts + h264) with the data received from the eye tracker.
From eye tracker I can get a timestamp when the data has been logged.
My idea is to get the time when the video frame was sent to the network and pick up the closest record from the eye tracker to it
Is it possible to get this frame information using ffmpeg ? I found information about the PTS and DTS of the frame, but it doesn't seem to be the same at all.
I also found that it is possible to get an NTP timestamp from the RTP protocol. It turns out that the information needs to be taken from the transport protocol ?

    


  • How to use ffmpeg so that there would be no need in including its dlls in your app folder ?

    22 octobre 2011, par Kabumbus

    So my point is to find normal ffmpeg in form of .lib for c/C++ windows developers so to be capable of including all needed functions inside my app - so to say one exe no extra dlls.

    So I am looking thrue its windows /autobuilds/ in search for such array of .lib files. as for now closest to what I wanted was that ffmpeg-swscale-mingw32-shared-dev\lib folder with .lib and .dll.a files. problem is I am quite new to C/C++ development so I wonder if this build is what I need or I need something else ?

    And what are .dll.a files for in ffmpeg mingw32 shared dev build after all ?

  • ffmpeg : how to clear the audio from a specified time window in a mp4 video [closed]

    26 août 2023, par Shiping

    I have a mp4 file and I want to clear the audio in a time window. I've searched around and tried a few ways, but can't make it to work. The closest I managed to get is a command like the following, which cleared the audio in the video from 5 seconds to the end.

    


    ffmpeg -i in.mp4 -af afade=t=out:st=5:d=1 out.mp4


    


    Unfortunately d=1 here means to fade out the audio in 1 second. not to clear the audio for 1 second, which is what I want. I think what I want to do should be a common operation and ffmpeg should already have a way to achieve it. For example, ffmpeg could have a corresponding filter to fade in the audio, such as afade=t=in:st=10:d=1. Any help will be appreciated. Thanks.