Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (10)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (5648)

  • 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