
Recherche avancée
Autres articles (69)
-
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 (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (8106)
-
Can't convert MP4 to MP3 with FFmpeg in Java
28 janvier 2015, par Yamaguchi KoseI want to extract an audio file(.mp3) from a video file(.3gp) in Android.
Now I’m trying to use ffmpeg in java file, but only to get an broken mp3 file.
It only produces a short noise.
How can it change to an audio format ?Here is the code I tried.
public void convertToMp3 (String audioFilePath, String soundTitle){
try {
//TODO: Grabber
FrameGrabber grabber = new FFmpegFrameGrabber( audioFilePath ); // 3gpfile
grabber.setFormat("mp3");
grabber.setSampleFormat(6);
grabber.setSampleRate(44100);
grabber.setFrameRate(30.0);
grabber.setAudioBitrate(192000);
grabber.setAudioChannels(2);
grabber.start();
//TODO: Recorder
String stragePath = Environment.getExternalStorageDirectory().getAbsolutePath();
FrameRecorder recorder = new FFmpegFrameRecorder(stragePath + "/Music/"+soundTitle+".mp3",grabber.getAudioChannels());
recorder.setSampleFormat(grabber.getSampleFormat());
recorder.setSampleRate(44100);
recorder.setSampleFormat(6);
recorder.setAudioBitrate(128000);
recorder.setAudioChannels(2);
recorder.setFormat("mp3");
recorder.setFrameRate(30.0);
recorder.setAudioCodec(avcodec.AV_CODEC_ID_MP3);
recorder.start();
Frame frame;
while ((frame = grabber.grabFrame()) != null) {
recorder.record(frame);
}
recorder.stop();
grabber.stop();
} catch (FrameGrabber.Exception e) {
e.printStackTrace();
} catch (FrameRecorder.Exception e) {
e.printStackTrace();
}
}I used these libraries.
Build.Grade(app)dependencies {
compile group: 'org.bytedeco', name: 'javacv', version: '0.10'
compile group: 'org.bytedeco', name: 'javacpp', version: '0.10'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '2.4.9-0.9', classifier: 'android-arm'
compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: '2.3-0.9', classifier: 'android-arm'
}Do you have any idea ? Any advice will be appreciated.
-
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 and ffprobe extension
10 avril 2020, par AnonymousI have installed WordPress on my Ubuntu 16.04 . Then I need ffmpeg and ffprobe php extensions for a video plugin. I tried to install ffmpeg first, but after installation I couldn't see ffmpeg extension in info.php page. How can I install it correctly ?