
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7518)
-
FFmpeg : How to change tempo dynamically
25 octobre 2018, par AnkushI am working on an android project in which I need to change the tempo of an mp3 (50 seconds audio) file dynamically as shown :
Time | Tempo
----------------------------------------------
0-4 | 1.0
|
4-8 | change form 1.0 to 0.5
|
8-12 | 0.5
|
12-16 | change from 0.5 to 1
|
16-20 | 1
|
20-24 | change from 1 to 1.5
|
24-28 | 1.5
|
28-32 | change from 1.5 to 1
|
32-36 | 1
|
36-40 | change from 1 to 1.5
|
40-44 | 1.5
|
44-48 | change from 1.5 to 1
|
48-50 | 1I had searched and found that I can use atempo for this. But it changes the whole audio tempo. I think that I can split the audio and apply the effect but it also not work for this type of dynamic task. Please help me to find the solution. Thank you in advance :)
-
Scaling seems to crop edges of video
7 septembre 2020, par JaoI'm doing some automation with FFmpeg and I need to be able to scale up and down videos. So I tried using the scale filter. No issue when I'm scaling up but when I'm scaling down I'm losing a few pixels from the bottom of the video and I must keep everything.


Here is an example :


$ ffmpeg.exe -i video.avi -vf scale=1536:644 video_resized.avi



Here, video.avi is 2048x858.
I tried a lot of parameters, algorithms and flags but nothing seems to "fix" it. Maybe it is normal and I'm not understanding correctly how scaling works but I need to resize without loss of edges.
Thanks in advance


-
ffmpeg overlay a watermark image on a video every 15 minutes ?
21 janvier 2016, par CharlesSo I have a snippet from a bash script that overlays a transparent image watermark onto a video file, like this :
/usr/bin/ffmpeg -i input.mp4 -i out.png -filter_complex "overlay=10:10" /outputfolder/output.mp4
Works beautifully, and fast.
What I really need though, is to have the watermark only show up at the start of the video, and then every 15 minutes through the video afterwards, for 30 seconds at a time.
Is this possible without multiple passes ?
Thanks in advance for all the help !