Recherche avancée

Médias (91)

Autres articles (63)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11683)

  • 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