
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (11250)
-
Revision 45567 : [source:_plugins_/step step]. Mettre dans un fichier à part les ...
19 mars 2011, par esj@… — Logstep. Mettre dans un fichier à part les fonctions spécifique à la syntaxe "plugin.xml", pour pouvoir à terme les surcharger.
-
FFmpeg : how to burn subtitles into only part of the video ?
30 octobre 2018, par xiatianI have a video which lasts for an hour but the ass subtitle only has the first 30 seconds. I want to burn this 30 seconds subtitle file into this video. Here are two options I have tried :
-
ffmpeg -i a.mp4 -vf "ass=a.ass" -ss 00:00:00 -t 30 b.mp4
Then I only get a 30-second long video. -
ffmpeg -i a.mp4 -vf "ass=a.ass" b.mp4
I can get the whole one-hour long video but it takes a long time !
How can I only encode only the first 30 seconds of this video and keep the rest of it unchanged (like the copy option) so that it takes less time to finish this burning process ?
-
-
Can an executable be run as a part of a blob-triggered Azure Function ?
24 décembre 2018, par Dhruv KapoorI know executables are suitable for timer triggers, but since the timer trigger doesn’t require parallel access to the executable, I wasn’t sure if it works for blob triggers. Let’s say I have 10 messages in my queue, will the Azure runtime cause a lock on the executable ? Or will it manage just fine with 10 parallel instances ? The context to this question is a wrapper library (NReco) I’m using around the FFMPeg utility. The binaries for FFMPeg are required during the exeution of my Azure function.