
Recherche avancée
Autres articles (22)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
Sur d’autres sites (4222)
-
how to install ffmpeg + php in xampp in ubntu
28 août 2015, par teamHi everyone i am working on project which need video merging, for that i am trying to install ff-mpeg PHP on xampp Ubuntu but not able to to install properly. can anybody give me steps to install ff-mpeg PHP on xampp in Ubuntu.
Thanks in advance.
-
Install ffmpeg in to virtual environment
22 mars, par ldgI am trying to install
ffmpeg
in order to use it on OpenAI to record videos. I have installed it usingbrew install ffmpeg
but somehow when I compile my code I get the same error, it is like the package is not recognized by myvirtualenv
where I am working.


Error on Python console :



raise error.DependencyNotInstalled("""Found neither the ffmpeg nor avconv executables. On OS X, you can install ffmpeg via `brew install ffmpeg`. On most Ubuntu variants, `sudo apt-get install ffmpeg` should do it. On Ubuntu 14.04, however, you'll need to install avconv with `sudo apt-get install libav-tools`.""")




However, when I execute which
ffmpeg
I got the following path/usr/local/bin/ffmpeg
.


It seems like that Anaconda for example needs a specific command to install this package into its environment, it is the same for virtualenv ?



Thanks in advance.


-
How to generate light weight videos with ffmpeg for Power Point in OS X ?
25 septembre 2014, par PabloI want to make some movies with ffmpeg to use them on a Powerpoint in Mac OS X. I am using this command, which works well but generates large movies (about 100 MB) without losing too much quality.
ffmpeg -f image2 -r 100 -pattern_type glob -i 'img*.png' -c:v mjpeg -qscale:v 20 test.avi
I have also tried using other codecs like mpeg4 and libx264 to generate lighter movies (about 10 MB) but they don’t work correctly in the Powerpoint presentation.
Does anyone know how to use them correctly or how to create a light weight movie with ffmpeg that works well on Powerpoint for OS X ?