
Recherche avancée
Autres articles (58)
-
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 (10176)
-
Split into video frames and save as jpeg
3 janvier 2017, par Selman AkbulutI want to split all frames and save the jpeg file but Error getBuffredImage
public static void main( String[] args )
{
FFmpegFrameGrabber g = new FFmpegFrameGrabber("C:\1.mp4");
g.start();
for (int i = 0 ; i < 50 ; i++) {
ImageIO.write(g.grab().getBufferedImage(), "png", new File(System.currentTimeMillis() + ".png"));
}
g.stop();
} -
split audio into 3s, and discard if the length is less than it
4 septembre 2019, par BarCodeReaderI am using ffmpeg to split a batch of audio files into 3s pieces.
However, let’s say for a 25s long raw audio, the previous 8 splits are good, no problem, but last piece will still be 3s with only 1s sound inside.I dont want the last piece and want ffmpeg to eigher discard or move to next audio..
Is there such a command ?
code I’m currently using :
ffmpeg input.mp3 -f segment -segment_time 3 -c copy output.mp3
-
Parse split content-range header without warning.
24 novembre 2019, par blueimpParse split content-range header without warning.
Fixes #3534.