
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11343)
-
avformat/mp3dec : fix start time in light of initial skip samples
5 janvier 2014, par Michael Niedermayer -
Why frameGrabber.start() Not Grabbing the Frames From Video File
17 mars 2017, par Danish SharmaHere the Below code in JAVA
public class Read
public static void main(String []args) throws IOException, Exception, InterruptedException, ExecutionException
{// Runtime.getRuntime().exec("ffmpeg -r 1 -i sample%d.png -s 320x240 -aspect 4:3 CHANDIGARH.mp4") ;
FFmpegFrameGrabber frameGrabber = new FFmpegFrameGrabber("C :/Users/Danish/Music/CHANDIGARH.mp4") ;
frameGrabber.setFrameNumber(0) ;
frameGrabber.start() ;IplImage i;
try {
for(int ii=0;ii<=frameGrabber.getLengthInFrames();ii++){
OpenCVFrameConverter.ToIplImage converter = new OpenCVFrameConverter.ToIplImage();
Java2DFrameConverter paintConverter = new Java2DFrameConverter();
i = converter.convert(frameGrabber.grab());
Frame frame = converter.convert(i);
BufferedImage img=paintConverter.getBufferedImage(frame,1);
IplImage iplImage = converter.convert(paintConverter.convert(img));
String path = "F:\\"+ii+".png";
ImageIO.write(img,"png", new File(path));
}
frameGrabber.stop();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} -
Recognize start of piano music in an MP3 file which starts with a spoken introduction, and remove spoken part, using Python
22 août 2020, par user3716846I have a number of .mp3 files which all start with a short voice introduction followed by piano music. I would like to remove the voice part and just be left with the piano part, preferably using a Python script. The voice part is of variable length, ie I cannot use ffmpeg to remove a fixed number of seconds from the start of each file.
Is there a way of detecting the start of the piano part and then know how many seconds to remove using ffmpeg or even using Python itself ?.
Thank you