Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (88)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (9242)

  • ffmpeg select() filter conditionally [closed]

    18 août 2023, par Tomasz Plonka

    I am trying to generate thumbnail strip image from a video file ; the number of thumbnails is constant. So I generate timestamps, dividing the video length by a number of frames, seeking for the frame using -ss option and extracting a frame using 'select='eq(pict_type\,I) filter to get a clear snapshot (this is a quite fast method). There is a problem at the end of a video, however : usually two or three last frames are simply not intraframes, so ffmpeg does not extract anything. Is there a way to write select() filter conditionally, i.e. something like "select intraframe if it exists, otherwise get any frame from at a time provided" ?

    


  • ffmpeg select filter starting time ?

    8 mars 2021, par Sergey Yermak

    I am stuck with ffmpeg select filter.

    


    I am trying to generate 10 thumbnails from the video and it works fine.

    


    However, I want to skip some starting time (around 30 seconds), since there are usually video intros, etc.

    


    So I can't figure out a way to do that - not using ffmpeg too often.
The command I'm currently using :

    


    ffmpeg -loglevel panic -y -i "test.mp4" -frames 1 -q:v 1 -vf "select=not(mod(n\,7877)),scale=-1:227,tile=10x1" video_preview.jpg


    


  • mute audio if the volume *exceeds* a threshold

    15 février 2023, par a1s2d3f4

    So, I have spent quite a bit of time looking for the answer but I get the exact opposite (something I already know how to do), namely, the audio below a certain threshold can get muted (can be done either with ffmpeg or sox).

    


    What I need is for the command to search my audio for anything that exceeds -18dB and mute all such segments. (The reason for this is because I have a recording where I am playing an electric piano with the audio output being recorded directly through the cable, but I am also recording from two microphones what I am speaking - between my playing. When I am playing the keyboard, the mics pick up a lot of action noise which I want to mute, and that's easy to do because the channel that records my piano input has piano sounds at that point and that corresponds exactly with when I want the audio from my mics to be muted, or at least attenuated.)

    


    Does anyone know if such a feat is possible ?
If it cannot be done with just one command, that's fine I'll try anything.