
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (71)
-
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 (11384)
-
Compressing a Video for HLS Streaming
12 mars 2018, par jAndyI’m in the situation where I have a source file (very high quality, direct output from FCPX) which is in 1080p resolution.
I use
ffmpeg
to create a 240, 360, 480 and 720 version to have an adaptive stream quality via HLS, so far so good. My question is about the strategy I’m using.
Right now, I always use the original file as input forffmpeg
. I was wondering if it wouldn’t be a better idea to convert from 1080 to 720 with full compression algorithms and after that, just re-scale from 720 to 480, 360 and 240.I’m not really into video compression and ffmpeg, so I’d just like to hear some expert opinions on this approach. Is there any advantage to always go "all the way" (original file -> compressed/rescaled file) ?
-
Replacing segments of MPEG DASH video
10 septembre 2018, par Mike19846546I am working with a converted DASH video with a manifest file containing a segmentList of all video segments. Is it possible to take multiple of these segments, encode an image overlay (using ffmpeg for example) and change the manifest file to correspond to the converted video segments combined with the original ones (those following the converted ones) without re-encoding the entire original video with the image overlays and then converting it to DASH ?
-
Beautify multiple ffmpeg commands
14 février 2018, par Vitalis HommelI am cutting video and put music to this video that contains of two concatenated audio files that are being overlayed by the original audio and cut to fit the length, while having a smooth fade in.
It works, but it is clumsy. Is there a shorter version and if yes, is this shorter version quicker ?
ffmpeg -y -i concat:"audio1.mp3|audio2.mp3" -acodec copy "audio1 + audio2.mp3"
ffmpeg -y -ss 00:01:07.798 -t 00:00:04.000 -i "input.mp4" -af "afade=t=in:ss=0:d=1,afade=t=out:st='00\:00\:02.309':d=1" -c:v libx264 1.mp4
ffmpeg -y -i 1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts 1f.ts
....
ffmpeg -y -i "concat:1f.ts|2f.ts..." -bsf:a aac_adtstoasc -movflags faststart -c copy "target.mp4"
ffmpeg -y -i "target.mp4" "Original.mp3"
ffmpeg -y -i "target.mp4" -an -c:v copy "temp.mp4"
ffmpeg -y -ss 00:01:54.321 -t 00:02:00.000 -i "audio1 + audio2.mp3" -c:v copy -af "afade=t=in:ss=0:d=4" "Musik.mp3"
ffmpeg -i Original.mp3 -i Musik.mp3 -vn -filter_complex "[0:a]volume = 0.9:precision =fixed[a0];[1:a] volume=0.1:precision=fixed[a1];[a0] [a1] amix=inputs=2:duration=first:dropout_transition=3[a]" -map "[a]" vor.mp3
ffmpeg -y -i "temp.mp4" -i "vor.mp3" -c copy "target.mp4"