
Recherche avancée
Autres articles (78)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (10056)
-
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 !