Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (63)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9526)

  • FFMpeg Effect Zoom In and Zoom Out Video File

    21 mars 2019, par Maxim_A

    I need to implement the effect of zooming in and out for video.

    Two operations are needed.
     
    The first operation is to set the zoom to zero at the beginning of the clip, and by the end of the clip the zoom was gradually increased twice.

    The second operation is that at the beginning of the video the zoom is equal to two, and by the end of the video the zoom should be zero.

    That is, it is necessary for the zoom to increase / decrease smoothly throughout the entire duration of the video.

    I know that Zoompad effect is used for this, but I could not use it for video.

    Thank you all in advance for your help !

  • encoding RGB32 frames to h264 h264_qsv ffmpeg libraries [closed]

    4 juillet 2023, par T P Sudhakar

    Am trying to port my software based encoding of RGb32 images to a h264 video using ffmpeg libraries using C++. Does h264_qsv supports encoding RGB32 images to h264 ?

    


    Thanks in advance

    


  • Redirecting output to different path

    9 septembre 2020, par user14245857

    this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.

    


    Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.

    


    Code is as follows :

    


    $inputfiles = ls *.mxf

  foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

  ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}


    


    Looking forward to your answers

    


    Thank you very much in advance