
Recherche avancée
Autres articles (9)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les thèmes de MediaSpip
4 juin 20133 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
Thèmes MediaSPIP
3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...) -
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 (...)
Sur d’autres sites (5634)
-
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 ?
-
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 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