
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 (103)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (14336)
-
Concatenating chunks of videos with different formats using FFmpeg
11 avril 2014, par SCCI was exploring the functionalities of FFmpeg recently. I have two different videos with different formats (e.g. mov and mp4). I will first split these videos up into smaller chunks, and concatenate them back with a mix of chunks from these two videos. However the concatenated video wasn't able to show properly. I did some research and found that mp4 cannot be concatenated using the normal concatenation method since it contains extra headers and information. Therefore I first converted all the videos into mpg, split them up, concatenate an convert back to mp4. However, still no luck on that.
Below are the commands I used :
// convert input (1st video) to mpg
ffmpeg -i input.mp4 input.mpg
// convert to keyframe video
ffmpeg -i input.mpg -strict -2 -g 20 keyframe_input.mpg
// split keyframe_input into smaller chunks
ffmpeg -i keyframe_input.mpg -acodec copy -f segment -segment_time 0.3 -segment_list s.m3u8 -vcodec copy -reset_timestamps 1 -map 0 split_input-%d.mpg
// convert input2 (2nd video) to mpg
ffmpeg -i input2.mov input2.mpg
// convert to keyframe video
ffmpeg -i input2.mpg -strict -2 -g 20 keyframe_input2.mpg
// split keyframe_input2 into smaller chunks
ffmpeg -i keyframe_input2.mpg -acodec copy -f segment -segment_time 0.3 -segment_list s.m3u8 -vcodec copy -reset_timestamps 1 -map 0 split_input2-%d.mpg
// concatenate video according to the video files written in mylist.txt
ffmpeg -f concat -i mylist.txt -c copy output.mpgWhen I tried to concatenate these chunks of videos, errors were thrown out saying buffer underflow, packet size too large.
Any FFmpeg experts out there to give some advices ?
-
Find Percentage of differences between two Videos Using FFMPEG
5 novembre 2015, par JaiI am working with Video comparison using ffmpeg on java. I would like to know there is any option available for Find the Percentage of differences between two Videos Using ffmpeg.
-
FFMPEG - C# - Audio and Video out of sync on certain videos after concatenation
10 décembre 2016, par iamanoobHey guys I’ve been trying to make this work for a while now and I can’t seem to find how to make the audio/video synced after the concatenation, I’ve searched and tested some solutions but couldn’t get it working.
Here is what I do right now, Everything is working but I must be doing something wrong.
So First, I split the videos into the video that I want
System.Diagnostics.Process.Start(ffmpegPath, "-i " +
video.Path + " -ss " + StartTime + " -t " + Duration + " " + video.Output);After "cutting/splitting" the videos that I want like I want, I tried concatenating the videos together ( using -safe 0 to use the absolute path, else it wasn’t working ) :
System.Diagnostics.Process.Start(ffmpegPath,
"-f concat -safe 0 -i " + txtFile + " C:\\Downloads\\Build\\" + rdn.Next(0,1000) + ".mp4");After that , I’ve noticed the audio/video was sometime out of sync so I searched and found this
so I decided to Pad all the videos after splitting them :
System.Diagnostics.Process.Start(ffmpegPath,
"-i " + video.Output + " -af apad -c:v libx264 -shortest -avoid_negative_ts make_zero -fflags +genpts -report " + padding);and then building it again, but it ended up having the same audio desync.
It’s my first time working with mp4s and with FFMPEG and I’m sure I’m missing something.