
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 (79)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (12129)
-
ffmpeg mp3 merging -itsoffset has no effect
12 août 2015, par Itzhak WeinI use ffmpeg to merge mp3’s in my node server. It works but the offset doesn’t have any effect..
I can’t see what is wrong then i’d like to get your help :)var command = "ffmpeg -i "+ input1+ " -itsoffset 40 -i " + input2 +" -filter_complex amerge -c:a libmp3lame -q:a 4 "+ output;
exec(command, function (error, stdout, stderr) {
if (stdout) console.log(stdout);
if (stderr) console.log(stderr);
if (error) {
console.log('exec error: ' + error);
response.statusCode = 404;
response.end();
} else {
// Do something
}
});I tried it also on my computer just in the terminal and it also works with the same problem..
Thanks,
Itzhak -
I want To Remove Green Screen from a Video and merge it with a White Background in FFMPEG ? [duplicate]
23 avril 2021, par Farid Hawami -
ffmpeg. How to apply checkerboard effect like this but with 4x4 squares ?
28 juillet 2023, par bot123412342143ffmpeg. How to apply checkerboard effect like this but with 4x4 squares ?


ffmpeg -i input-image-1.png -i input-image-2.png -filter_complex "[1:v][0:v]blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'" output-image.png