
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 (45)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (...)
Sur d’autres sites (10080)
-
convert video to audio - ffmpeg
2 mai 2024, par shakti goyalI'm trying to convert video to audio using ffmpeg in flutter based application but command is not working.


Is there something wrong with the command ?


void convert(File pickedVideo) async {
 Directory applicationDocDirectory = await getApplicationDocumentsDirectory();

 final outputPath = '${applicationDocDirectory.path}/output-audio-${const Uuid().v1()}.mp3';

 final session = await FFmpegKit.execute('-i ${pickedVideo.path} -vn -acodec mp3 $outputPath');

 final returnCode = await session.getReturnCode();

 print(ReturnCode.isSuccess(returnCode)); // return false
 }



-
AWS Chime : Video Merging Java Library
18 mai 2023, par Swapnil SrivastavI am using AWS Chime to record interaction of two or more than two participants, I want to process this and build a final video.


While making final video I want to mask one participant's video with some generic image and everything I want to do using Java.


Is there any library available which can help me to do this ? I'm using Python as of today, ffmpeg library.


-
How to concatenate two or more videos with different width in FFMpeg and to maintain the same aspect ratio ?
23 octobre 2019, par AarwilI have five video parts to concat all. Each five videos are in the same width and height. The second part is the hstack of another 2 videos and the third part is the hstack and vstack of another 3 videos. While concat all the five video parts the aspect ratio is not maintaining in the final video. Since I am new to ffmpeg help me to sort out the problem
I have tried with the command with filter complex and to reduce the size I used frame per second.
"ffmpeg -i
RM356ce8c15f47cb07b7af885fd718a39f/final/RM356ce8c15f47cb07b7af885fd718a39f.mp4 -vf scale=1280:480 -filter:v fps=fps=30 E :\test\routes\public\assets\downloads\RM356ce8c15f47cb07b7af885fd718a39f/final/RM356ce8c15f47cb07b7af885fd718a39f.mp4"Only ’-vf fps=fps=30’ read, ignoring remaining -vf options : Use ’,’ to separate filters