Recherche avancée

Médias (91)

Autres articles (109)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (17265)

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