
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (75)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (12431)
-
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 !