
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (24)
-
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 (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (2043)
-
h264 : add MVCD to the list of High profiles in SPS
17 février 2014, par Vittorio Giovara -
doc/examples/transcoding : Use the decoders pixel format if the encoder does not list...
28 février 2016, par Michael Niedermayer -
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>