
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (92)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (...) -
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 (...)
Sur d’autres sites (12659)
-
avcodec/hevc_ps : Also print depth in failure path of map_pixel_format()
18 juillet 2015, par Michael Niedermayer -
Installed ffmpeg, added to path, still can't save animation from Jupyter Notebook
29 avril 2017, par dredre_420I’m trying to simulate a two-body orbit system working on Jupyter Notebook (python). Since the animation can’t display in-line I tried installing ffmpeg and adding it to the system path using steps outlined here : http://adaptivesamples.com/how-to-install-ffmpeg-on-windows/.
However, when I try to save my animation using
anim.save('orbit.mp4', fps=15, extra_args=['-vcodec', 'libx264'])
, I still get the error message :ValueError: Cannot save animation: no writers are available. Please install mencoder or ffmpeg to save animations.
Not sure what else to try at this point, very inexperienced programmer here.
-
ffmpeg path while installing pyffmpeg on ubuntu
4 février 2014, par flapjacksI am having some trouble installing PyFFmpeg. I installed FFmpeg using
sudo apt-get install ffmpeg
, and then got the PyFFmpeg code from GitHub.The instructions on that page say to "edit setup.py to adapt ffmpegpath to your configuration", so I ran
which ffmpeg
, which spit out/usr/bin/ffmpeg
. I put this into the ffmpegpath variable in setup.py, ransudo python setup.py install
got the error/usr/bin/ffmpeg/include: Not a directory
.I then ran
dpkg -L ffmpeg
, which spit out/usr/share/doc/ffmpeg
, but when I put that into the ffmpegpath variable in setup.py, I get the same big error that I get if I don't edit pyffmpeg at all :error: Command "gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/share/doc/ffmpeg/ include -I/usr/include -I./include -I/usr/lib/python2.7/dist-packages/numpy/core/include -I/usr/include/python2.7 -c pyffmpeg.c -o build/temp.linux-x86_64-2.7/pyffmpeg.o" failed with exit status 1
What should I set pyffmpeg path to ? Am I missing something else here ?