
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (56)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4507)
-
Encoder for FLV ffmpeg
13 mars 2014, par user2171669I need to grab desktop and write it to FLV video using ffmpeg. I need low CPU usage, but also need text to be recognizable.
Also I see, that many players (f.e. OSFLV) doesnt support H264 FLV.
1. Which codec should I choose ?
2. Which encoder should I use ?
See please (http://en.wikipedia.org/wiki/Flash_Video, 'Support for audio and video compression formats in Flash Player and in Flash Video' TABLE).
If I am wrong somewhere (I am newbie), forgive me please. Thanks in advance.
-
ffmpeg only shows one Image ?
8 juillet 2021, par m_so99Here are the images I have in my folder :


img001.png
img002.png



They are stored in
c:/frames
.

Because that my frames are not shown correctly, used the FPS filter video shown below (documentation from https://trac.ffmpeg.org/wiki/Slideshow) :


ffmpeg -r 1/5 -i img%03d.png -c:v libx264 -vf fps=25 -pix_fmt yuv420p out.mp4



I tried running on my VLC media player but it still doesn't work. It only shows one image.


-
How to convert High bitrate MP3 to lower rate using FFmpeg
28 mars 2024, par user4571931We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.



ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3




Result :-the output bitrate same as input mp3.



And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3



so please suggest any solution.