
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (20)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
Sur d’autres sites (4919)
-
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
-
FFmpeg vidstab generates jerky wiggling video
27 mars 2022, par praet0ri4nI run Kdenlive 21.12.3 on Ubuntu 20.04.
Recently I stared editing footage from my Nikon D3100 DSLR. Source videos are 1920:1080 24fps in MOV format (camera set to PAL system).


After trying to stabilize a video where I am walking I noticed that the result is kind of stabilized but the image is distorted and contains some strange wiggling effect. Changing the stabilization settings doesn't have any impact on this effect. I haven't seen this before. Previously I stabilized footage from other cameras without problems. This is the first time I use that DSLR.


To me it looks like stabilization is doing some strange interpolation and it is stretching and skewing the image or pixel aspect ratio.
For convenience I tried the vidstab filter with ffmpeg, played around with the interpol option too, but the result ist exactly the same.


Here the source MOV and stabilized mp4 file for comparison
https://nc.p1p0.eu/index.php/s/tTQgPj9rDbmReYn


Thank you !


-
Where to place the fontfile for the FFmpeg Android drawtext-Filter ?
13 juin 2018, par jpGerhardI’m using the precompiled FFmpeg-Android by Bravobit (via gradle :
implementation 'nl.bravobit:android-ffmpeg:1.1.5'
; based on WritingMind’s) with the intention of drawing the current timestamp/location onto a .mp4 file. I am completely new to FFmpeg and have started with Android Studio a few months ago.Information :
- IDE : Android Studio
- OS : OSX 10.13.5
My problem :
I don’t know whether the fontfile needs to be in the Application path on my Phone, in the Android Studio directory or just on a location on my MacBook (so it gets compiled when running the application).
Basic FFmpeg commands (-version, ...) are working, but I can’t seem to figure out where I have to place my fontfile.
My current command is as follows :
-i /path/to/video.mp4 -vf drawtext=fontfile=/users/shared/fonts/arial.ttf :text='Hello World' /path/to/output.mp4
I’ve tried a lot of variations and always received to following errors :
Fontconfig error : Cannot load default config file
[Parsed_drawtext_0 @ 0xecbfd420] impossible to init fontconfig
[AVFilterGraph @ 0xec9cc140] Error initializing filter ’drawtext’ with args ’fontfile=/users/shared/fonts/arial.ttf:text=Hello World’
Error reinitializing filters !
Failed to inject frame into filter network : Unknown error occurred
Error while processing the decoded data for stream #0:0
Conversion failed !Does anyone have a suggestion on how to get this to work ?