
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (8699)
-
issues with gas-preprocessor and ffmpeg4iphone
4 janvier 2012, par Shoeb AminI want to install gas pre-processor on my mac from
gas pre-processorit is told that i have to install in usr/local/bin, But I didnt find my local folder in usr thats why I created a local/bin under usr then tried to install it from terminal...
but It didnt work.. it says that "Unrecognized input filetype at gas-preprocessor.pl line 33."
BTW my ultimate goal is to build ffmpeg4iphone in my xcode 4.2 and iOS5 sdk from ffmpeg4iphone
-
FFmpeg logging does not work from java command run
15 avril 2020, par white-hackWhen I run the following code :



Runtime rt = Runtime.getRuntime();
rt.exec("ffmpeg -I /path/to/video/kot.mp4 /path/to/picsdir/img%04d.jpeg 2> /path/to/log.log");




This command run as expected in the terminal, the problem is that it does not work from java code. Exactly logging !
Please help ! Thanks !


-
FFmpeg command to cut video into smaller segments not working programmatically
14 septembre 2020, par PrakruthiHow to cut a video into smaller segment using ffmpeg in a Java program ? The command works fine from terminal but doesn't when I try the same in my program.


Here's the code snippet


public static void main(String[] args) throws IOException {

 Runtime runtime = Runtime.getRuntime();
 Process p = runtime.exec("ffmpeg -i /Users/test/Desktop/demo.mp4 -ss 0 -t 2 -c:v copy copy.mp4");
}