
Recherche avancée
Autres articles (73)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...)
Sur d’autres sites (14162)
-
ffmpeg - Concat multiple video files, add audio, set length to videos combined length
25 février 2018, par Rune AspvikI have up until now done this in 2 steps.
- Concat video files to outputNoAudio.mp4
- Add audio to outputNoAudio.mp4 trimming with -shortest
Now I’m trying to do this in one step using this line
ffmpeg -f concat -safe 0 -i 'vidlist.txt' -i 'music.m4a' -c copy -movflags faststart -y 'test.mp4'
If I use -shortest I end up with an output the length of the shortest video in vidlist.txt. What I’m trying to achieve is the length of all videos combined.
-
Is it possible to cut a online streaming video with ffmpeg ?
12 mai 2019, par Sam ZornIs ffmpeg able to cut out a certain part of an online video stream ? for example, I would like to cut out only the 40 - 55 minutes from a one-hour
online streaming video.I am aware of how I can do this with a local one. so for example :
ffmpeg -ss [start] -i in.mp4 -t [duration] -c:v libx264 -c:a aac -strict experimental -b:a 128k out.mp4
the little bit I know about codecs etc tells me that it either takes disproportionately long or is not possible at all...
if someone could give me some advice, maybe even a short explanation, I would be very grateful... :)
-
ffmpeg create video with logo and subtext
13 mars 2018, par DM1974I would like to do the following in order
- Create a mp4 video from new for say 30 seconds
- add a logo at the top left or right
- also add text at the bottom, so at time = 0 it says "Hello" time = 5 it says "Goodbye" and have these displayed for a little duration...
Could I do this in one call to ffmpeg, or would I need to do it in three steps ?
How can I combine these steps together ?Thanks