
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (79)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (4602)
-
Installing gifify on Windows
23 février 2016, par Robert WojciechowskiSo gifify is a pretty awesome script that converts videos to gifs via command line : https://github.com/vvo/gifify
I’m keen to get this working on my Windows 10 machine. I’m pretty new to windows and relatively new to coding, but I was able to get a few things working, but ran into a problem.
Here is what I did :
- Installed node.js + npm
- Installed FFmpeg using npm
- Installed ImageMagick using npm (i think i did this wrong, might have only installed the wrapper).
- Downloaded giflossy. It needed to be built (?)
- Installed Visual Studio 2015, tried to build it using nmake and got this error :
NMAKE : fatal error U1073: don't know how to make 'win32cfg.h'
The command I used was :
PS C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin> .\nmake -f "C:\Users\Robert's Workstation\.npm-global\node_modules\giflossy-lossy-1.82.1\src\Makefile.w32"
Would really appreciate some help with this :D
-
Installing gifify on Windows
12 octobre 2017, par Robert WojciechowskiSo gifify is a pretty awesome script that converts videos to gifs via command line : https://github.com/vvo/gifify
I’m keen to get this working on my Windows 10 machine. I’m pretty new to windows and relatively new to coding, but I was able to get a few things working, but ran into a problem.
Here is what I did :
- Installed node.js + npm
- Installed FFmpeg using npm
- Installed ImageMagick using npm (i think i did this wrong, might have only installed the wrapper).
- Downloaded giflossy. It needed to be built (?)
- Installed Visual Studio 2015, tried to build it using nmake and got this error :
NMAKE : fatal error U1073: don't know how to make 'win32cfg.h'
The command I used was :
PS C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin> .\nmake -f "C:\Users\Robert's Workstation\.npm-global\node_modules\giflossy-lossy-1.82.1\src\Makefile.w32"
Would really appreciate some help with this :D
-
Using ffmpeg to split videos into frames doesn't work
28 décembre 2018, par אבנר יעקבIn my code i’m trying to split video to frames using ffmpeg.
for this I’m using this code
experiments = ['iguazu.mp4', 'boat.mp4']
for experiment in experiments:
exp_no_ext = experiment.split('.')[0]
os.system('mkdir dump')
os.system('mkdir dump\%s' % exp_no_ext)
os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
exp_no_ext, exp_no_ext))So in visual studio code it’s working perfect but in visual studio community the line "os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
exp_no_ext, exp_no_ext))" showing error "ffmpeg is not recognized as an internal or external command".