
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (75)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (13829)
-
No such file or Directory in android FFMpeg [duplicate]
4 mai 2017, par Anil kumarThis question is an exact duplicate of :
Hi i am using FFMpeg for splitting recorded video files and i searched lot in google for executing FFMpeg splitting command,But no one provided me
right solution and i am facing this issue since 3 days on words.I am using below code for splitting video per every 8 seconds but i am getting exception No such file or Directory,I hope some one help me
code :
public void executeBinaryCommand(FFmpeg ffmpeg) {
try {
if (ffmpeg != null) {
inputFileUrl= /storage/emulated/0/1492848702.mp4;
outputFileUrl= /storage/emulated/0/1492848702.mp4;
String cmd[] = new String[]{"-i ",inputFileUrl+" ","-c ","copy ","-map ","0 ",
"-segment_time ","8 ","-f ","segment/sdcard/Download/output%03d.mp4"};
ffmpeg.execute(command,
new ExecuteBinaryResponseHandler() {
@Override
public void onFailure(String response) {
System.out.println("failure====>" + response.toString());
}
@Override
public void onSuccess(String response) {
System.out.println("resposense====>" + response.toString());
}
@Override
public void onProgress(String response) {
System.out.println("on progress");
}
@Override
public void onStart() {
System.out.println("start");
}
@Override
public void onFinish() {
System.out.println("Finish");
}
});
}
} catch (FFmpegCommandAlreadyRunningException exception) {
exception.printStackTrace();
} -
How can I use ffmpeg to split the video into 10 minute chunks in android ?
3 mai 2017, par Anil kumarHi i am uploading big videos files to server but it’s taking large time for uploading that’s why i decided to send chunk files to server
When i google it i found that FFMpeg is better for splitting videos files as some parts and i found below code but when i run below code i am getting exception like No such file or directory
please help me some one i am facing this problem since two days but still no one given me right solution
code :-
public void getSplitCommand(String inputFileUrl, String outputFileUrl) {
System.out.println("input file===>" + inputFileUrl);
System.out.println("output file===>" + outputFileUrl);
String cmd[] = new String[]{"-y ", "-i ", inputFileUrl , "00:00:02 ", "codec ","copy ","-t ","00:00:06 ",
outputFileUrl };
}
public void executeBinaryCommand(FFmpeg ffmpeg, String[] command) {
try {
if (ffmpeg != null) {
ffmpeg.execute(command,
new ExecuteBinaryResponseHandler() {
@Override
public void onFailure(String response) {
System.out.println("failure====>" + response.toString());
}
@Override
public void onSuccess(String response) {
System.out.println("resposense====>" + response.toString());
}
@Override
public void onProgress(String response) {
System.out.println("on progress");
}
@Override
public void onStart() {
System.out.println("start");
}
@Override
public void onFinish() {
System.out.println("Finish");
}
});
}
} catch (FFmpegCommandAlreadyRunningException exception) {
exception.printStackTrace();
}
} -
ffmpeg capture RTSP stream to hourly file
23 avril 2017, par David PatrickI’m using ffmpeg to capture a RTSP stream to a file using the following command :
ffmpeg -i rtsp://[IP Address]:[port]/[URL] -vcodec copy -r 60 -t 2600 -y /[outputfile].mp4
This works ok and captures 60 mins fine. What I’d like to be able to do is :
- Output hourly files, e.g.
capture1.mp4 capture2.mp4
etc. - Put the current timestamp as the overlay in the current file (currently
VLC says something likeLIVE555...
). I’d like to change this to
source + timestamp
. - Delete old mp4 files over x days old, e.g. keep files for 1 or 2 days
Is this possible in ffmpeg or do i need to put a script wrapper around the ffmpeg command ? If so, any examples of those I can re-use please ?
This is on Ubuntu linux using latest ffmpeg package and usingapt-get install ffmpeg
to install so it’s built from source.Thanks
- Output hourly files, e.g.