
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 (39)
-
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 à (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (2973)
-
Find Percentage of difference between two Videos Using FFMPEG
8 octobre 2020, par JaiI am working with Video comparison using FFmpeg on Java. I have videos name "video1 and Video2". I can find the difference between two video using FFmpeg.


It shows the result Video with difference. But here I want to find how many percent (IE : 20%) Video1 different from Video2. How to achieve this ?


-
Supporting HEVC/H.265 videos in Electron
1er mars 2021, par ElmoChrome/Electron don't normally support H.265 videos. I want the user to be able to play .mov files recorded by Apple devices in my app. How can I do this ?


Possible approaches :


- 

- Use ffmpeg to transcode to H.264 in real-time, which will be resource intensive (not ideal)
- Use WebAssembly to render the video in a
<canvas></canvas>
tag (not ideal) - Fork and manually add H.265 codec support to Chrome/Electron (overkill)
- Use a native module that renders the video in a
<canvas></canvas>
orBrowserView










-
ffmpeg performance with hundreds of cuts (atrim)
25 mai 2021, par drakonI have audio files (think 2h) where I want to cut out a lot of pieces out of it (500+) and a ffmpeg command like this one :


['ffmpeg', '-i', 'pipe:', '-filter_complex', 
'[0]atrim=end=30.69:start=0.0[s0];
 [0]atrim=end=34.31:start=31.18[s1];
 [0]atrim=end=38.65:start=34.43[s2]; 
 (... hundreds more)
 [s37][s38][s39][s40][s41]concat=a=1:n=42:v=0[s42]', '-map', '[s42]']



Stream mapping built with ffmpeg-python :


Stream #0:0 (mp3float) -> atrim
 (... hundreds more)
 Stream #0:0 (mp3float) -> atrim
 concat -> Stream #0:0 (libmp3lame)



Now this works as expected but it takes locally something like 10mins for the files I have and when I deploy it to some server in the cloud it takes something like an hour. It definitely depends on the machine obviously and I definitely scale there the speed but I'd also like to know if there's a way to speed up the processing with ffmpeg itself.


Thanks for any pointers !