Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (52)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (2179)

  • avfilter/vf_uspp : about 10x the speed with threads

    15 mars 2023, par Michael Niedermayer
    avfilter/vf_uspp : about 10x the speed with threads
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_uspp.c
  • Handbreak ffmpeg encode vs decode speed (x265)

    10 février 2023, par Demian

    I'm encoding videos in x265 to save same storage (Gopro, DJI, etc.). This is working well for me with Handbreak and I got some good CRF values for my use cases.

    &#xA;

    My question is about the encoding preset. The slower it is the better Qualitiy per Bitrate you get, but the encoding time increases.

    &#xA;

    But how the decoding time. Does it also consume more CPU power to watch (decode) a video which was created with a slow prestet then a fast preset ?

    &#xA;

    Thank you !

    &#xA;

  • How do I speed up a video to a specific time for instance 'n' seconds in FFMPEG ?

    24 novembre 2022, par user3475182

    When using python moviepy library, you can speedup a video to a specific time using the below command :

    &#xA;

    video.fx(vfx.speedx, final_duration=audio_duration)&#xA;

    &#xA;

    Is there a way we can achieve the same using ffmpeg ?

    &#xA;

    I tried the below commands ; but this will not accurately speed up the video to a specific time.

    &#xA;

    ffmpeg =i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]asettps=0.5*PTS[a]" -map "[v]" -map "[a]" output.mp4&#xA;

    &#xA;