
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (64)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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" ; -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (4791)
-
Try to concatenate videos using FFmpeg Package. My videos concatenate correctly but those that i record from fornt camera rotate 90' in concatenate
24 avril 2024, par Ahmad AkramHere is my code where I pass a list of image paths that concatenate. I am facing an issue with the front camera video. When concatenated completely some videos rotate 90 degrees.


Future<void> mergeVideos(List<string> videoPaths) async {
 VideoHelper.showInSnackBar('Videos merged Start', context);
 String outputPath = await VideoHelper.generateOutputPath();
 FlutterFFmpeg flutterFFmpeg = FlutterFFmpeg();

 // Create a text file containing the paths of the videos to concatenate
 String fileListPath =
 '${(await getTemporaryDirectory()).path}/fileList.txt';
 File fileList = File(fileListPath);
 await fileList
 .writeAsString(videoPaths.map((path) => 'file \'$path\'').join('\n'));

 // Run FFmpeg command to concatenate videos
 // String command = '-f concat -safe 0 -i $fileListPath -c copy $outputPath';

 String command =
 '-f concat -safe 0 -i $fileListPath -vf "transpose=1" -c:a copy $outputPath';

 VideoHelper.showInSnackBar('command Start', context);
 await flutterFFmpeg.execute(command).then((value) {
 if (value == 0) {
 print("Output Path : $outputPath");
 VideoHelper.showInSnackBar('Videos merged successfully', context);
 Navigator.push(
 context,
 MaterialPageRoute(
 builder: (context) => VideoPlayerScreen(
 videoFile: XFile(outputPath),
 )));
 } else {
 VideoHelper.showInSnackBar(
 'Error merging videos ::::: returnCode=== $value ', context);
 }
 });
 }
</string></void>


-
Ffmpeg hardcode a list of subtitles to a video
23 décembre 2022, par TheRedMI couldn't figure out how to stream a list of subtitles to an rtmp server, the idea is I have a list of mp3 files and a list of subtitles, each mp3 has its own subtitle, what i was trying to do is stream both lists and a video background (with the subtitles hardcoded to the video background) i tried a bunch of options, I managed to output them as an mp4 video with the subtitles softcoded but I couldn't figure out how to stream them with the subtitles hardcoded, my lists goes as follow :


mp3s



file 'path/to/audio1.mp3'
file 'path/to/audio2.mp3'
file 'path/to/audio3.mp3'
file 'path/to/audio4.mp3'
...



subtitles


file 'path/to/audio1.srt'
file 'path/to/audio2.srt'
file 'path/to/audio3.srt'
file 'path/to/audio4.srt'
...



And of course the video background as input


I was thinking about using a while loop but that's going to call ffmpeg for every mp3 which is inconvenient for a live stream.


With some more digging I come up with this code :


ffmpeg -f concat -safe 0 -i audioList.txt -f concat -safe 0 -i subtitleList.txt -i background/video.mp4 -filter_complex "[1:v][0:a]overlay[v1];[v1][2]subtitles[v2]" -map "[v2]" -c:a aac -b:a 128k -c:v h264 -b:v 3000k -f flv rtmp://stream/key



I'm not sure if the subtitles will be hardcoded because the script didn't work at all, it seems right to me but i'm getting this error


[Parsed_subtitles_1 @ 0xaaaacf52fb60]
No filename provided!
[AVFilterGraph @ 0xaaaacf5f6370] Error initializing filter 'subtitles'
Error initializing complex filters.
Invalid argument



I re-checked
subtitleList.txt
It seems right.

-
Revision 5c22224e9e : Corrected optimization of 8x8 DCT code The 8x8 DCT uses a fast version whenever
11 décembre 2014, par Peter de RivazChanged Paths :
Modify /vp9/common/x86/vp9_idct_intrin_sse2.c
Corrected optimization of 8x8 DCT codeThe 8x8 DCT uses a fast version whenever possible.
There was a mistake in the checking code which
meant sometimes the fast version was used when it
was not safe to do so.Change-Id : I154c84c9e2d836764768a11082947ca30f4b5ab7
(cherry picked from commit fd05fb0c21e253b4d6f92d7e0b752850ff8ab188)