
Recherche avancée
Autres articles (100)
-
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 (...) -
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" (...)
Sur d’autres sites (15761)
-
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");
}



-
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 !


-
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