Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (62)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8410)

  • ffplay - change playback speed without re-encoding

    2 novembre 2016, par Timothy Tan

    I have some .264 video files that I would like to view at half playback speed, without encoding them into a new file. I remember using ffplay to do this in the past, but it was some time ago, and I can’t seem to be able to do it now. From lots of searching, this is what is supposed to work :

    ffplay -f h264 -vf "setpts=2.0*PTS" filename.264

    However this does not seem to change the playback speed at all. If I try :

    ffplay -f h264 -filter:v "setpts=2.0*PTS" filename.264

    I get an error message saying ’Failed to set value ’setpts=2.0*PTS’ for option ’filter:v’ : Option not found’.

    I specifically remember being able to do this before but cannot find any information about this now. Converting the videos is not really an option because the files are finicky and often cause an error halfway through converting, corrupting the whole file.

    Is there a simple solution to this problem ? Am I typing one of the commands wrongly ?

  • FFmpeg - Low/unstable encoding speed

    12 février 2023, par Erwan

    Trying to transcode two streams into one gives me poor/unstable encoding speeds from x0.400 to x0.988, sometimes above x1.

    


    fmpeg \
   -thread_queue_size 15 -rtbufsize 100M -i "https://.../stream.m3u8" \
   -thread_queue_size 15 -rtbufsize 100M -i "http://.../video.mjpg" \
   -filter_complex \
   "[0:v]setpts=PTS-STARTPTS [bg]; \
    [1:v]scale=200:-1,setpts=PTS-STARTPTS [fg]; \
    [bg][fg]overlay=W-w-10:10" \
   -c:v mpeg1video \
   -b:v 1000k \
    -r 25 \
   -threads 1 \
   -f mjpeg udp://127.0.0.1:1235?pkt_size=1316


    


    Hardware specs :

    


      

    • CPU is Intel Core 2 Duo
    • 


    • Mechanical hard drive
    • 


    


    I choose the mpeg1video encoder because of the low CPU usage. It seems that my Core 2 Duo can't keep up with libx264 .

    


    I played with output bitrates, fps and threads, -re but nothing seems to improve and stabilize encoding speed to x1. Which parameters do I need to change/add/remove to achieve a reliable x1 encoding speed ?

    


    Input streams are not reliable, download internet connection is slow and unreliable.

    


  • ffmpeg : How to change video duration (slow-down or speed-up) to exact value ?

    2 février 2017, par Moo

    I have miltiple videos with different durations and need to always set it to be exactly 10 seconds.

    I know that I can use -filter:v "setpts=speed*duration" but is there any way to make a universal one-line function to convert any-duration video to 10 seconds video ?