
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (111)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (4029)
-
How to concat videos from a file list while adding black fade transitions in ffmpeg
6 avril 2022, par connor449I have a piece of code that concats videos from a file list. It works perfectly.


ffmpeg -f concat -safe 0 -i file_list.txt -c copy mergedVideo.avi



However, I want to add a black fade transition between each video. I found this code snippet that apparently does this, but it requires you to input each file by hand.


ffmpeg -i in.mp4 -i main.mp4 -i out.mp4 -filter_complex \
 "[0:v]fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v0]; \
 [1:v]fade=type=in:duration=2,fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v1]; \
 [2:v]fade=type=in:duration=2,setpts=PTS-STARTPTS[v2]; \
 [v0][0:a][v1][1:a][v2][2:a]concat=n=3:v=1:a=1[v][a]" \
 -map "[v]" -map "[a]" output.mp4



I want to be able to read all the video files from a txt file as I have hundreds of videos. How do I combine these two snippets, or is there a better way to accomplish the concat with fade transitions ?


-
Got black screen when recording screen by x11grab device
5 août 2019, par shawmzhuI’m trying to record video from a firefox run by
xvfb-run
but it always output nothing in the video file except black screen.Here’s what I did :
start a firefox, open google.com :
$ xvfb-run firefox https://google.com
Then it will use the default display server number 99. I can see the display information by command
xdpyinfo -display :99
.A screenshot works very well by command :
$ xwd -root -silent -display :99.0 | xwdtopnm |pnmtojpeg > screen.jpg
Start using ffmpeg to record a video :
$ ffmpeg -f x11grab -i :99.0 out.mpg
When I play the video file
out.mpg
, there’s black screen all the time.Is there any parameter I missed ?
-
Got black screen when recording screen by x11grab device
30 janvier 2014, par shawnzhuI'm trying to record video from a firefox run by
xvfb-run
but it always output nothing in the video file except black screen.Here's what I did :
start a firefox, open google.com :
$ xvfb-run firefox https://google.com
Then it will use the default display server number 99. I can see the display information by command
xdpyinfo -display :99
.A screenshot works very well by command :
$ xwd -root -silent -display :99.0 | xwdtopnm |pnmtojpeg > screen.jpg
Start using ffmpeg to record a video :
$ ffmpeg -f x11grab -i :99.0 out.mpg
When I play the video file
out.mpg
, there's black screen all the time.Is there any parameter I missed ?