
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (60)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (6764)
-
Remove parts of a video automagically without reencode ?
21 août 2022, par SamI'm looking for a way to remove automatically the opening and ending parts of a video (credits) without reencode.


If you need an example, take Game of Thrones : I'd need a way to automatically remove the GoT opening (with the theme music) and the ending part (with the credits and the HBO logo part).


FFmpeg can do that, but the cut has to be manual and happens only at keyframes... which isn't precise enough for me.


I thought that maybe there is a tool that allows to scan a video, and remove a part between two input frames (the start of opening frame, the end of opening frame)... etc, same thing for Ending.


Thanks for the help !


-
ffmpeg encode video with different rates [on hold]
12 août 2013, par alexisI have two videos. I make this videos with the following codes :
ffmpeg -r 5 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an a.avi
ffmpeg -r 15 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an b.aviAs you can see, the only difference is the rate. Now I want to concatenate them. Following the other post I use this :
ffmpeg -i "concat:a.avi|b.avi" -c copy movie2.avi
However the resulting movie shows the "b.avi" part much more slower. Actually no difference of speed is appreciated between "a" and "b" parts. How can I keep the differences of speed in the resulting movie ?
Maybe I have some conceptual misunderstanding about rate... but the thing is that I want the "b.avi" part to be faster than the "a.avi" part.
-
audio discontinuity in ffmpeg joined youtube video
1er novembre 2016, par MrPeachI downloaded 4 parts of a video of youtube, and I wanted to join them.
My first (conservative) attempt :
echo file 'Part 1.mp4' > m
echo file 'Part 2.mp4' >> m
echo file 'Part 3.mp4' >> m
echo file 'Part 4.mp4' >> m
ffmpeg -f concat -i m -c copy 1a.mp4Result : A/V sync good, at transition video garbled, audio discontinuity
Second (extreme) attempt :
echo file '1.avi' > m
echo file '2.avi' >> m
echo file '3.avi' >> m
echo file '4.avi' >> m
ffmpeg -y -i "Part 1.mp4" -f avi -acodec pcm_s16le -ac 2 -ar 44100 -vcodec rawvideo -pix_fmt yuv420p 1.avi
ffmpeg -y -i "Part 2.mp4" -f avi -acodec pcm_s16le -ac 2 -ar 44100 -vcodec rawvideo -pix_fmt yuv420p 2.avi
ffmpeg -y -i "Part 3.mp4" -f avi -acodec pcm_s16le -ac 2 -ar 44100 -vcodec rawvideo -pix_fmt yuv420p 3.avi
ffmpeg -y -i "Part 4.mp4" -f avi -acodec pcm_s16le -ac 2 -ar 44100 -vcodec rawvideo -pix_fmt yuv420p 4.avi
ffmpeg -f concat -i m -c:a libvo_aacenc -c:v h264 1b.mp4Result : A/V sync issues in first section, at transition slight jump in video, audio discontinuity
I have no idea how to fix this. Thoughts ?
Update :
Both the audio and video exhibit issues - skipping and duplication of a short section at some joins.
My ultimate solution was to check the a&v section joins for duplication and trim that off if it exists, and for the audio cut out any silence sections as best as the waveform allowed. Lastly, modify the audio tempo to match the length of the video.
It’s a terrible hack, but it’s what I’m stuck with. If anyone ever comes up with a better approach, I’d love to hear of it.