
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11193)
-
Revision 103307 : - Les plugins-dist de spip 3.2 ne sont pas supposé avoir de support ...
17 mars 2017, par spip.franck@… — LogLes plugins-dist de spip 3.2 ne sont pas supposé avoir de support pour qu’il fonctionne avec spip 3.1, donc, j’ai fait un z+1 quand il y avait déjà un "y" de différence entre spip 3.1 et 3.2 sinon, j’ai fait un y+1, ainsi il sera toujours possible de faire des corrections d’éventuel bugs future qui ne concernerait que les plugs de la version 3.1
La version de mini de compatibilité est maintenant 3.2.0-dev, comme, ça, quand l’alpha sortira, cela devrait être bon (quand la version 3.2.0 stable sortira, je mettrais 3.2.0 comme version mini)
Il y avait aussi un ou deux mots avec des accents comme par exemple & ;#232 ; j’ai fait le changement pour y mettre à la place è ou autres
-
Revision 103307 : - Les plugins-dist de spip 3.2 ne sont pas supposé avoir de support ...
11 juin 2018, par spip.franck@… — LogLes plugins-dist de spip 3.2 ne sont pas supposé avoir de support pour qu’il fonctionne avec spip 3.1, donc, j’ai fait un z+1 quand il y avait déjà un "y" de différence entre spip 3.1 et 3.2 sinon, j’ai fait un y+1, ainsi il sera toujours possible de faire des corrections d’éventuel bugs future qui ne concernerait que les plugs de la version 3.1
La version de mini de compatibilité est maintenant 3.2.0-dev, comme, ça, quand l’alpha sortira, cela devrait être bon (quand la version 3.2.0 stable sortira, je mettrais 3.2.0 comme version mini)
Il y avait aussi un ou deux mots avec des accents comme par exemple & ;#232 ; j’ai fait le changement pour y mettre à la place è ou autres
-
Joining/Concatenating more than one video files in Java Spring Boot
7 décembre 2020, par Rohan ShahI am trying to join/concate multiple files in Java, so far the procedure that I was following (
https://github.com/bramp/ffmpeg-cli-wrapper
) was going alright, but in this procedure, there were a couple of lines that I could not understand.

Code I am following :


FFmpeg ffmpeg = new FFmpeg("/path/to/ffmpeg");
FFprobe ffprobe = new FFprobe("/path/to/ffprobe");

FFmpegBuilder builder = new FFmpegBuilder()

 .setInput("input.mp4") // Filename, or a FFmpegProbeResult
 .addInput("input2.mp4") // <-------------------------------- Second file that I added
 .overrideOutputFiles(true) // Override the output if it exists

 .addOutput("output.mp4") // Filename for the destination
 .setFormat("mp4") // Format is inferred from filename, or can be set
 .setTargetSize(250_000) // Aim for a 250KB file

 .disableSubtitle() // No subtiles

 .setAudioChannels(1) // Mono audio
 .setAudioCodec("aac") // using the aac codec
 .setAudioSampleRate(48_000) // at 48KHz
 .setAudioBitRate(32768) // at 32 kbit/s

 .setVideoCodec("libx264") // Video using x264
 .setVideoFrameRate(24, 1) // at 24 frames per second
 .setVideoResolution(640, 480) // at 640x480 resolution

 .setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
 .done();

FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);

// Run a one-pass encode
executor.createJob(builder).run();

// Or run a two-pass encode (which is better quality at the cost of being slower)
executor.createTwoPassJob(builder).run();



These are the lines throwing error :


FFmpeg ffmpeg = new FFmpeg("/path/to/ffmpeg");
FFprobe ffprobe = new FFprobe("/path/to/ffprobe");



In these lines, I am providing a path like this,


FFmpeg ffmpeg = new FFmpeg("D:/");
FFprobe ffprobe = new FFprobe("D:/");



which leads to an error


java.io.IOException: CreateProcess error=5



I believe the
ffmpeg
in/path/to/ffmpeg
andffprobe
in/path/to/ffprobe
are files, not directories, which is why it threw an execution permission error, but as I looked into the repository (link given above) I was not able to find this particular file in the given link.

There were a couple of Java files named
ffmpeg.java
andffprobe.java
, but when I tried using them in the code then I got the same error, so I want to know which files am I supposed to have in these paths