
Recherche avancée
Autres articles (64)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (6091)
-
FFMPEG : Merge Image and Audio Convert into Video in android using FFMPEG library
30 janvier 2014, par Nitish Singlai want to convert images into video in android using FFMPEG,still now i compiled the library successfully,and also get Libffmpeg.so.
Using Platform : UBUNTU,Eclipse
My problem is- when i use this library command too convert video into images through Java code i mean through my Activity i got Error-
JAVA.IO.EXCEPTION.Enable to execute .Exec() command
But if i exceute this command through CMD then my video file is created successfully.
i want to know whats the problem behind it,i am searching from 2 days on it,but could not get the solution,i thing its problem of Execute Permission In android.Plzzz help me,,,or tell me is it possible to in android to make a video file using FFMPEG.Code :
public class Mpeg extends Activity {
String cmd;
static {
System.loadLibrary("ffmpeg");
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_mpeg);
File mf = Environment.getExternalStorageDirectory();
String install="$adb push ./asl-native /sdcard/asl-native";
String ins="$adb shell /system/bin/chmod 0777 /sdcard/asl-native";
String start="$adb shell /system/bin/chmod 0777 /sdcard/asl-native";
String str="$adb shell /system/bin/chmod 0777 /sdcard/asl-native";
try{
Process p = Runtime.getRuntime().exec(install);
p = Runtime.getRuntime().exec(ins);
p = Runtime.getRuntime().exec(start);
p = Runtime.getRuntime().exec(str);
Log.e("filee name", "goodddddd"+ install);
Log.e("full command", "goodddddd"+ ins);
}
catch (Exception e) {
Log.e("image", "exception");
}
String livestream = mf.getAbsoluteFile()+"/smile.png";
Log.e("image", "imageeeeeeeee " + livestream);
String folderpth = mf.getAbsoluteFile()+"/RABBA.MP3";
Log.e("Test", "songggggggggg " + folderpth);
String output=mf.getAbsoluteFile()+"/plztest.mp4";;
//String output = new File(Environment.getExternalStorageDirectory(), "plzz.mp4").getAbsolutePath();
Log.e("Test", "outputttttt " + output);
cmd= "ffmpeg -i "+ livestream +" -i "+ folderpth +" -acodec copy "+ output;
Log.e("chck plzzzzz", "after "+ cmd);
//String jaiho="ffmpeg -i image8.jpg -i file.m4a -acodec copy test.mp4";
// Boolean heloo=isDeviceRooted_BySu();
//Log.e("check file", "after "+ heloo);
Button run=(Button)findViewById(R.id.btn);
run.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
try {
Execute();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
/*
try{
Process p = Runtime.getRuntime().exec(cmd);
Log.e("check file", "main fileeee ");
}
catch (IOException e) {
throw new RuntimeException(e);
}
*/
}
public void Execute() throws IOException, InterruptedException{
Process process=Runtime.getRuntime().exec(cmd);
// process = pb.command(com).redirectErrorStream(true).start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.mpeg, menu);
return true;
}
public static boolean isDeviceRooted_BySu() {
try {
Log.d("BySu", "BySu");
Process p = Runtime.getRuntime().exec("su");
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
}Logcat output :
06-05 17:58:10.686: D/dalvikvm(1189): Trying to load lib /data/data/com.example.myfmpeg /lib/libffmpeg.so 0x412a5cf0
06-05 17:58:10.756: I/dalvikvm(1189): threadid=3: reacting to signal 3
06-05 17:58:10.955: D/dalvikvm(1189): Added shared lib /data/data/com.example.myfmpeg/lib/libffmpeg.so 0x412a5cf0
06-05 17:58:10.955: D/dalvikvm(1189): No JNI_OnLoad found in /data/data/com.example.myfmpeg/lib/libffmpeg.so 0x412a5cf0, skipping init
06-05 17:58:11.024: I/dalvikvm(1189): Wrote stack traces to '/data/anr/traces.txt'
06-05 17:58:11.215: I/dalvikvm(1189): threadid=3: reacting to signal 3
06-05 17:58:11.326: I/dalvikvm(1189): Wrote stack traces to '/data/anr/traces.txt'
06-05 17:58:11.466: E/image(1189): imageeeeeeeee /mnt/sdcard/smile.png
06-05 17:58:11.466: E/Test(1189): songggggggggg /mnt/sdcard/RABBA.MP3
06-05 17:58:11.476: E/Test(1189): outputttttt /mnt/sdcard/video.mp4
06-05 17:58:11.476: E/chck plzzzzz(1189): after ffmpeg -i /mnt/sdcard/smile.png -i /mnt/sdcard/RABBA.MP3 -acodec copy /mnt/sdcard/video.mp4
06-05 17:58:11.896: E/AndroidRuntime(1189): FATAL EXCEPTION: main
06-05 17:58:11.896: E/AndroidRuntime(1189): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myfmpeg/com.example.myfmpeg.Mpeg}: java.lang.RuntimeException: java.io.IOException: Error running exec(). Command: [ffmpeg, -i, /mnt/sdcard/smile.png, -i, /mnt/sdcard/RABBA.MP3, -acodec, copy, /mnt/sdcard/video.mp4] Working Directory: null Environment: null
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.app.ActivityThread.access$600(ActivityThread.java:123)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.os.Handler.dispatchMessage(Handler.java:99)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.os.Looper.loop(Looper.java:137)
06-05 17:58:11.896: E/AndroidRuntime(1189): at android.app.ActivityThread.main(ActivityThread.java:4424)
06-05 17:58:11.896: E/AndroidRuntime(1189): at java.lang.reflect.Method.invokeNative(Native Method)
06-05 17:58:11.896: E/AndroidRuntime(1189): at java.lang.reflect.Method.invoke(Method.java:511)
06-05 17:58:11.896: E/AndroidRuntime(1189): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
06-05 17:58:11.896: E/AndroidRuntime(1189): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
06-05 17:58:11.896: E/AndroidRuntime(1189): at dalvik.system.NativeStart.main(Native Method)
06-05 17:58:11.896: E/AndroidRuntime(1189): Caused by: java.lang.RuntimeException: java.io.IOException: Error running exec(). Command: [ffmpeg, -i, /mnt/sdcard/smile.png, -i, /mnt/sdcard/RABBA.MP3, -acodec, copy, /mnt/sdcard/video.mp4] Working Directory: null Environment: null -
swscale/swscale : clear to/from convert pointers when they used.
14 avril 2014, par Michael Niedermayer -
ffmpeg convert mp4 to mpg which can be played in a dvd player
17 avril 2014, par Santhosh YedidiI have seen that to convert a file to dvd player format using ffmpeg we use
ffmpeg -i input.mp4 -target ntsc-dvd output.mpg
the output.mpg will be played from usb in the tv.
But the bitrate at which ntsc-dvd converts is very high. Because of which the size of the mpg is 5 times bigger than mp4.
So i tried to convert manually
ffmpeg -i input.mp4 -c:v mpeg2video -q:v 5 -c:a ac3 -b:a 60k output.mpg
the problem is the file gets converted with almost equal size as mp4 but without any sound. The audio codec of output.mpg shows ac3. Why ac3 is not having any sound.