
Recherche avancée
Autres articles (41)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7225)
-
ffmpeg to concat list of videos without txt
18 novembre 2023, par tee Swiftiven been trying different ways to concat the list of videos called videoPaths but it doesnt work so i tried this way but it results in a zero byte file


mergeVideos() async {
 String commandToExecute = '-y -i ${videoPaths[0]} -i 
 ${videoPaths[1]} -r 24000/1001 -filter_complex \'[0:v:0] 
 [0:a:0][1:v:0][1:a:0]concat=n=2:v=1:a=1[out]\' -map \'[out]\' 
 $outputPath';
 print(commandToExecute);
 FFmpegKit.execute(commandToExecute).then((session) async {
 print(await session.getOutput());
 });
 }



Ive also tried this but fails with return code 1


Future<void> concatenateVideos() async {
 try {
 String command = '-i ${videoPaths.join(' -i ')} -filter_complex concat=n=${videoPaths.length}:v=1:a=1 -y $outputPath';

 FFmpegSession session = await FFmpegKit.executeAsync(command);

 ReturnCode? returnCode = await session.getReturnCode();

 if (returnCode == ReturnCode.success) {
 print('Concatenation completed successfully!');
 } else {
 print('Error during concatenation. FFmpeg return code: $returnCode');
 }
 } catch (e) {
 print('Error: $e');
 }
 }
</void>


-
doc/examples/transcoding : Use the decoders pixel format if the encoder does not list...
28 février 2016, par Michael Niedermayer -
h264 : add MVCD to the list of High profiles in SPS
17 février 2014, par Vittorio Giovara