
Recherche avancée
Autres articles (69)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9626)
-
Anomalie #2728 : js de login déficient sous opera 11.64
4 juin 2012, par cedric -tu es sûr qu’il n’y a pas un autre problème dans ton instance 3.1.0-dev (ou alors qu’elle ne traine pas un cache d’un js qui posait problème ?). Car il n’y a vraiment aucune différence entre les 2 branches sur ce sujet (aucune différence entre les 2 branches d’ailleurs, autre que le numéro de (...)
-
Join files based on duration - FFMpeg
4 décembre 2019, par srt243I have a folder with multiple
mxf
files in it and I want to join the files based on duration. For example, if the duration between 1st and 2nd file is more than 2 seconds, then do nothing, but if the duration is less than 2 seconds then join these two (1st and 2nd) files, then iterate through the list and if the duration between 2nd and 3rd file is less than 2 seconds, then join the 3rd file along with 1st and 2nd, but if the duration is more than 2 seconds then create a new file and proceed to 4th, 5th file, etc. in the list.So far, I have managed to iterate through list and get the difference in the duration of the files but I have no idea how to iterate through this and join files. Below is the difference in duration list using the
python
code,['00:00:06:17', '00:00:00:16', '00:00:01:05', '00:00:00:31', '00:00:01:01']
00:00:06:17
is the duration difference between end of 1st file and start of 2nd file.
00:00:00:16
is the duration difference between end of 2nd file and start of 3rd file.
00:00:01:05
is the duration difference between end of 3rd file and start of 4th file.So in this case, we will have,
1st file on it’s own, and,
Join 2nd, 3rd, 4th, and 5th files.Any pointers will be much appreciated.
-
overlay n previouse frame as red and n future frame as green, using ffmpeg
27 mars 2017, par 12.yakirHow can I use ffmpeg to overlay the current frame with the difference between the current frame and the frame from (say) 10 frames ago encoded as (say) red, and overlay that with the difference between the current frame and the frame from (say) 10 frames ahead encoded as (say) green...?
It should output a single video, with the history, present, and future overlayed on-top of each other.
After reading about ffmpeg filters, I suspect I’ll need to use some magical combination of : split, itsoffset, blend, difference, filter_complex, overlay, and maybe tblend..?
It would be awesome if I could also scale down the video first (before any eventual splitting) to make it go faster (the spatial resolution of the videos I need to work with is overly high).
Impossible ?