Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

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

  • Convert youtube video files with ffmpeg to a format that can be playable on ios devices

    26 décembre 2018, par Amin

    I’ve created a telegram robot that downloads YouTube files and sends them to the user. Since most of our users use ios devices, Our first priority is ios.
    Videos files play on Windows and Android but not broadcast on ios.
    I convert format with ffmpeg after download from youtube :

    ffmpeg -i input.mp4 -strict -2 -vcodec mpeg4 output.mp4

    But in addition to prolonging the processing time, the file size increases and eventually the file will not run again in ios.

  • FFmpeg live stream to Youtube with Raspberry Pi & USB Camera — What command to use for better quality ?

    4 août 2023, par qwet142

    I am currently streaming to Youtube live with the following command :

    


    ffmpeg -re -f s16le -i /dev/zero -f v4l2 -thread_queue_size 512 -codec:v mjpeg -s 1920x1080 -i /dev/video0 -c:v libx264 -preset ultrafast -acodec aac -b:v 3500k -g 30 -f flv rtmp://a.rtmp.youtube.com/live2/key

    


    The frame rate is great, and the speed is 1x. However, the quality is very poor, improved only slightly after increasing the bitrate to 3000k. Changing the resolution doesn't help, and using veryfast makes things worse. How can I fix the quality ?

    


    Note : there is no audio and this is a USB camera.

    


  • Use mmpeg to encode AUDIO+IMAGE into a VIDEO for YouTube

    12 juin 2014, par pablosz

    I need to generate a video containing a single image throughout the duration of the audio comming from an audio file. This video should be compatible with the parameters supported by YouTube.

    I’m using ffmpeg.

    I was trying various configurations explained right here and in other forums but not all have worked well.

    I’m currently using these settings :

    ffmpeg -i a.mp3 -loop 1 -i a.jpg -vcodec libx264 -preset slow -crf 20 -threads 0 -acodec copy -shortest a.mkv

    Where a.mp3 containing audio, a.jpg contains the image and a.mkv is the name of the resulting video.

    Using these parameters a.mkv works well on YouTube and can be played with Media Player Classic ; but KMPlayer only recognizes the audio, showing a blank image as background.

    My questions are two :
    1 - There is something wrong that causes KMPlayer to fail ?
    2 - Is there any configuration that can deliver the video faster, of course losing some compression ?

    Muchas gracias !