
Recherche avancée
Médias (29)
-
#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 (105)
-
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 (...) -
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 (...) -
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 (...)
Sur d’autres sites (10170)
-
How to add text to video frame/s using ffmpeg ?
17 février 2017, par PappuWhat I need is that I am looking for command that helps me add a text on video for few frames. For example, there is door with a empty name plate in a scene. I should be able to write name to it and it should move as the door moves. after door disappears, so should the text. Can I do it using ffmpeg or any other tool in linux. TIA
-
How do I generate a color screen for the duration of an MP3 in ffmpeg ?
25 février 2019, par yaggeleeI have successfully generated a blue screen to add to an mp3. But, I have always needed to include the length of the clip to match the mp3. When I don’t include a timecode it continues to generate footage until I cancel the command.
ffmpeg -f lavfi -i color=blue:s=1920x1080 -i input.mp3 -t 00:02:08 output.mp4
How do I specify that I only want color generated during the length of the mp3 that I am adding ?
ffmpeg -i <.jpg> -i <.mp3>
This worked too but I don’t want to rely on a jpeg file.
-
FFMPEG extract frame-accurate video fragments with minimal transcoding
9 mars 2018, par LeeroyHow can I extract frame-accurate video or audio fragments using FFMPEG without transcoding the full portion ?
ffmpeg -i input.mp4 -ss 00:00:01.234 -to 00:00:05.678 output.mp4
works because it re-encodes... If I use-codec: copy
then it disregards the precision of my start and end time arguments and instead uses the closest keyframe (I understand).Is there a command or combination of commands to instruct FFMPEG to transcode only what’s needed, the bits near the start/end markers, up to keyframes ?
EDIT : A bit of context... I’m trying to write this function to process video piped from
youtube-dl
, perhaps even as a service. So it matters that I minimize bandwidth (downloading to timestamp and discarding after) and CPU utilization (re-encoding all of the fragment).