
Recherche avancée
Autres articles (34)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (4203)
-
Android Ffmpeg- No command working for merging images to produce video
23 juillet 2015, par Workaholic ErI have compiled ffmpeg for android using ndk r10e on os x but it does not produce ffmpeg.so. All other libraries are generated. I have been searching this for over a week. I have tried various methods to execute ffmpeg command but none were successful. I used
Process p = Runtime.getRuntime().exec(
getBaseContext().getApplicationInfo().nativeLibraryDir);
Process p = Runtime.getRuntime().exec(Environment.getExternalStorageDirectory().getPath());
Process p = Runtime.getRuntime().exec("chmod 700 /data/data/com.example.ffmpegtem/app_bin/ffmpeg");All resulted in IOException. I also tried Shell Callback method provided by Github android ffmpeg library project which resulted in Nullpointerexception. I have written read/write permission.
Convert 1 image to video code :
DataOutputStream os = new DataOutputStream(chperm.getOutputStream());
os.writeBytes("-loop 1 -i " + inpath + " -c:v libx264 -t 15 -pix_fmt yuv420p -vf scale=320:240 "+outpath);What am I doing wrong ? Please help
-
How to apply reverb effect in Video in Android programatically ?
7 août 2021, par Anil KananiI want to apply Reverb effect to a Video in Android. Is it possible in Android or with Jetpack Compose ? Any quickfix to the problem ?


What I have tried :


val reverb = PresentReverb(0, simpleExoplayer.audioSessionId)
 //Doesn't work.



-
Android place multiple images and text inside video at desired position and frame
19 septembre 2018, par MathaNI am new for video editing in android, I am finding a solution to edit a video in Android application, unfortunately I cannot get any examples for that, I need to place Image or text on video in a desired frame and also need to save it. Just like InShot android app , I tried to add simple text using ffmpeg but it tooks to much of time to save a video. Is there any alternative way to do that ?