Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (60)

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

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11346)

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

  • How to speed up video conversion

    9 mai 2016, par Arheisel

    I’m currently working in a proyect that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.

    For now i’ve tried copying the folder to a ram disk and using avconv wich takes about a minute.

    Here is my command :

    avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg

    could ffmpeg work faster ?
    is there a way to speed it up ?
    wich video format take less time to convert to ?