Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (55)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6553)

  • 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