
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (6960)
-
Fade out audio with ffmpeg without knowing video length
31 janvier 2018, par FloI have the following command line I use with ffmpeg to add an audio track to a video that doesn’t have any audio track.
ffmpeg -i final.mp4 -i soundtrack.mp3 -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 -shortest with_audio.mp4
I am looking for a way to fade out the volume nicely at 3s from the end of the video. The soundtrack will be always longer than the video, but the video can be any length. Existing command lines I found require to specify exact timing when to start/end fade effect. I am looking for a way that is agnostic to video length, I just want the sound to fade out to start 3s before video ends.
Is there any way to do this with ffmpeg ?
Many thanks in advance for answers !
-
ffmpeg : cutting 20 seconds of video starting from the middle time in a bash cycle
12 janvier 2023, par Isabelleim in a bash script looping a dir full of .mp4 video files each one with a different lenght.
Now : how can i cut 20 seconds starting in the exact middle of any video ?
For a single file i can read manually the duration of the video so i know at what second start cutting : e.g.
for a 120 sec. video i use


ffmpeg -i "tmpfile.mp4" -ss 60 -t 20 -c copy "outputfile.mp4" 2>/dev/null


but now the problem is that the "-ss" value should be a variable with the (total lenght of video/2)
some videos are long less than a minute, some are long many minutes, and some are more than one hour.


Thanks


Cant find a middle time value to start cutting


-
How do I read a video's length/duration ?
31 janvier, par DnKHow can I batch generate .edl files for a folder of videos with different run times ? I need to skip an exact amount of seconds from the start and another from the end. Videos have different runtimes. I can make .edl files for skipping the intro but need a way to read the video runtime to skip the last 60 or 90 seconds.


Edit decision list format :


0:00:00 0:01:20. 3



If the video is 40 minutes 30 seconds the edit decision list skipping 80 seconds from the start and 90 seconds from the end should be :


0:00:00 0:01:20. 3
0:39:00 0:40:30. 3