Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • 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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6187)

  • FFmpeg - How to scale and then drawtext ?

    19 janvier 2015, par vanderjas

    I’m trying to scale and crop a video and then apply some text over the top.

    I’m able to achieve each of these successfully using the following filters :

    Scale & Crop

    -vf scale=-1:640,crop=640:640:0:0

    Draw Text

    -vf drawtext="fontfile=Gotham-Book.ttf: text=TextHere:fontsize=72:fontcolor=gray@0.25:x=10:y=10”

    I presume I need to use some kind of filter complex but I am not having any luck.

    Can anyone help ?

    Thanks in advance !

  • Superimpose audio track on plot animation

    17 février 2023, par Antoine101

    I plot a matrix in a standard matplotlib figure with imshow. Each matrix is the result of a signal processing calculation on a time signal snapshot (0.2s). I plot each snapshot one after the other (the signal is several seconds long) in a loop and record the animation with FFMPegWriter, setting the FPS so that it matches real time. The output is an MP4 file.

    


    Now, I'd like to add a soundtrack on top of it, of the time signal that was used to calculate the matrices.

    


    How would you do that ? I scrolled a lot but didn't find any suitable solution.
Any idea of libraries or packages ?

    


    Many thanks in advance.

    


  • How Do I Convert a yuv420 Video File to 16-bit (using ffmpeg) ?

    1er novembre 2022, par IanMurphy

    As the title says, my video file has 12-bit depth and I want to convert it to 16-bit. I dont care which yuv pixel format, as long as its 16 bit. I have installed ffmpeg and I can't figure out what combination of arguments to use to convert it. The video file is very small : 20 frames at 352x288.

    


    This is the command I have been trying, but the file size is the same number of bytes as the original :

    


    ffmpeg -video_size 352x288 -pixel_format yuv420p -sample_fmt s16 -i inpput.yuv output.yuv


    


    If there is another way to do this without ffmpeg, I am open to any suggestions. Thanks in advance !