
Recherche avancée
Autres articles (25)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (6087)
-
How to change the size of audio visualisers in ffmpeg ?
3 juillet 2017, par Meme StreamI have this command in ffmpeg :
echo shell_exec("$ffmpeg -i test.aiff -y -filter_complex '[0:a]showfreqs=s=1920x1080:mode=bar:ascale=log:fscale=lin:win_size=w1024:win_func=poisson:colors=blue,format=yuv420p[v]' -map '[v]' -map 0:a output2.mp4 2>&1");
I want to make it so that the video dimensions are still 1080p but the showfreqs graph is squashed and located near the bottom of the screen. How do I do this ? Thanks.
-
Convert a ffmpeg video to an appropriate dimension
6 mars 2015, par georgechalhoubI am writing a video conversion script using ffmpeg, it has been completed to full. Ideally, my video conversion script should output the video to many formats (like YouTube) :
- 140p : 256 x 144
- 240p : 426 x 240
- 360p : 640 x 360
- 480p : 854 x 480
- 720p : 1280 x 720
- 1080p : 1920x 1080
The problem I am facing is that if a user uploads a 480p (854 x 480) video or close to 480p (854 x 480) the script will convert to all formats (1080p and 720p) which would seem like a waste of bandwidth and disk space in this case.
The problem isn’t as easy as it seems. If a user uploads a 500 x 300 video I don’t want it to get converted to a 240p, there has to be some estimations.
Who can help me or has some experience with such kind of problems ?
-
ffmpeg conversion dimension error
7 mars 2015, par georgechalhoubI am writing a video conversion script using ffmpeg, it has been completed to full. Ideally, my video conversion script should output the video to many formats (similar to YouTube) :
- 140p : 256 x 144
- 240p : 426 x 240
- 360p : 640 x 360
- 480p : 854 x 480
- 720p : 1280 x 720
- 1080p : 1920x 1080
The problem I am facing is that if a user uploads a 480p (854 x 480) video or close to 480p (854 x 480) the script will convert to all formats (1080p and 720p) which would seem like a waste of bandwidth and disk space in this case.
The problem isn’t as easy as it seems. If a user uploads a 500 x 300 video I don’t want it to get converted to a 240p, there has to be some estimations.
Is there some command in ffmpeg which does any help dealing with such type of problems ?