
Recherche avancée
Autres articles (34)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5745)
-
Encoding DXV in ffmpeg (resolume codec)
31 mai 2019, par Leo ZerinoI do have it listed in
ffmpeg -codecs
, but it returnsUnknown encoder 'dxv'
.Do I have to reinstall ffmpeg with DXV dependencies ? If so, how ? Why is it listed in -codecs if it’s unknown ?
I’ve found this on the web :
https://www.ffmpeg.org/doxygen/3.2/dxv_8c_source.html
Supposedly the source for dxv encondig. Should I use it anyhow ?
-
ffmpeg doesn't recognize after adding to path
26 janvier 2021, par Gurgen HovakimyanI installed ffmpeg, added it to path and I can find it in command line, but in jupyter notebook when I try to use bcr.bar_chart_race function it returns me this error message
**Exception : You do not have ffmpeg installed on your machine. Download
ffmpeg from here : https://www.ffmpeg.org/download.html.


Matplotlib's original error message below:
 Requested MovieWriter (ffmpeg) not available**



-
OpenShift — installing ffmpeg
2 juillet 2016, par aweeeezyI’m new to deploying web apps — I just started looking into hosting plans yesterday morning when I settled on OpenShift. I have my app running, but it depends on
node-youtube-dl
which returns this error when trying to download a video from a link :Error: Command failed: WARNING: m_djk1RQ2Ew: writing DASH m4a. Only some players support this container. Install ffmpeg or avconv to fix this automatically.
ERROR: ffprobe or avprobe not found. Please install one.So I searched around for awhile and kept returning to the same list instructions for how to install ffmpeg on OpenShift :
cd $OPENSHIFT_DATA_DIR
mkdir bin
wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz
wget http://ffmpeg.org/releases/ffmpeg-2.0.1.tar.gz
tar -xvf yasm-1.2.0.tar.gz
cd yasm-1.2.0
./configure --prefix=$OPENSHIFT_DATA_DIR/bin --bindir=$OPENSHIFT_DATA_DIR/bin
make
make install
export PATH=$OPENSHIFT_DATA_DIR/bin:$PATH
cd $OPENSHIFT_DATA_DIR
tar -xvf ffmpeg-2.0.1.tar.gz
cd ffmpeg-2.0.1
./configure --prefix=$OPENSHIFT_DATA_DIR/bin --bindir=$OPENSHIFT_DATA_DIR/bin
make
make installNow my
~/app-root/data
has ffprobe in it as well as some other codec related things, butnode-youtube-dl
still returns the same error saying I don’t have the necessary codecs installed. Here’s a listing of the contents of my data directory on OpenShift :-rwxr-xr-x. 1 11024048 Jul 2 01:51 ffmpeg
-rwxr-xr-x. 1 10967408 Jul 2 01:51 ffprobe
-rwxr-xr-x. 1 10611184 Jul 2 01:51 ffserver
drwx------. 10 4096 Jul 2 01:51 include
drwx------. 3 4096 Jul 2 01:51 lib
drwx------. 4 29 Jul 2 01:51 share
-rwxr-xr-x. 1 2116650 Jul 2 01:15 vsyasm
-rwxr-xr-x. 1 2115479 Jul 2 01:15 yasm
-rwxr-xr-x. 1 2102821 Jul 2 01:15 ytasmI really want OpenShift to work because it’s the last step to finishing off this one app before I move onto new projects — I don’t want to switch to paid hosting that will allow me to install stuff because I won’t be ready to determine an appropriate plan until a few months from now. That leaves me with trying to get ffmpeg to compile properly on OpenShift...so either a) I’m ignorant and it has long since been determined to be impossible by the OpenShift community or b) I’m ignorant and there’s a simple thing I’m doing wrong when building my codec libraries.
Anybody out there know what’s wrong or had success installing these codecs before ? I’d greatly appreciate some guidance !