Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (86)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11995)

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

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

    


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