
Recherche avancée
Autres articles (80)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (11785)
-
WorkManager returns result before completion of async method in it
27 mars 2019, par Usman RanaI want to apply some editing on the media file before uploading and I’ve used FFMPEG library for that. But as FFMPEG executes the command with a callback in it. So, the WorkManager returns success even before completion of ffmpeg command completion. How can i avoid it and keep WorkManager on hold until the work is completed. I’ve used CountLatch as well to add wait but then ffmpeg doesn’t work starts work and WorkManager remains stuck. Any ideas would be appreciable.
Thanks -
Revision 60bd744c88 : Improve accuracy of rate control in CQ mode Modifies a special handling that im
8 avril 2015, par Debargha MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Improve accuracy of rate control in CQ modeModifies a special handling that improves rate control accuracy in
the constrained quality mode, when the undershoot and overshoot
limits are set tighter.Change-Id : If62103f0ef3ed1cac92807400678c93da50cf046
-
FFMPEG mixing .wav files volume control [closed]
1er avril 2024, par JoonSeo YangI am working on Java, using the ffmpeg library with command line processing to mix 2 .wav files into one .wav file, but I would like to know how to control the volume of each original file.


My problem : i have 2 audio files (human voice BGM), but BGM is too loud, so i can barely hear human voice, i would like to -> volume down the BGM file, or volume up voice file


Here is my partial code


String ffmpegCommand = file_exe.getAbsolutePath()
 + String.format(
 " -i %s -i %s -filter_complex amix=inputs=2:duration=first:dropout_transition=3 %s",
 file_1.getAbsolutePath(), file_2.getAbsolutePath(), outputFilePath);
Process process = Runtime.getRuntime().exec(ffmpegCommand);



it is quite simple code. I need help on this, and it would be very thankful to which document to read to get such information


PS.sorry for my poor eng.. Im not native :D


I was wandering around documentations, but its quite hard to find what i want