
Recherche avancée
Autres articles (65)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (7375)
-
Changing start number in segment name - ffmpeg mpeg dash encoder
4 mars 2019, par TrycoderI’m trying to implement MPEG dash live streaming using FFmpeg dash encoder and shaka player.
Is there any way to set the start number to any value other than 1 ?
For example,
chunk-stream0-00009.m4s
instead of the default starting segmentchunk-stream0-00001.m4s
-
lavf/dashdec : add 3GPP TS26.247 probe in dash demuxer
19 février 2020, par Jun Zhao -
Create dash manifest-file for mp4-videos
10 juillet 2020, par WernerI took a video and created 3 versions of it in different sizes (including a watermark, no audio here) with :


ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 2400k -maxrate 2400k -bufsize 1200k -filter_complex "overlay=24:960,scale=640:480" -y "output_640_480.mp4"

ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 3200k -maxrate 3200k -bufsize 1600k -filter_complex "overlay=24:960,scale=800:600" -y "output_800_600.mp4"

ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 5300k -maxrate 5300k -bufsize 5300k -filter_complex "overlay=24:960,scale=1920:1080" -y "output_1920:1080.mp4"



Now I want to create the manifest mpd file. The problem is that MB4Box is not available on the target-system, so I tried to do it with ffmpeg :


ffmpeg
-f dash -i "output_640_480.mp4"
-f dash -i "output_800_600.mp4"
-f dash -i "output_1920_1080.mp4"
-c copy -map 0 -map 1 -map 2
-f dash -adaptation_sets "id=0,streams=0,1,2"
-y
"manifest.mpd"



But I get errors :


[dash @ 0000015ed965db40] Manifest too large: 6654253
output_640_480.mp4: Invalid data found when processing input



The single videos do play without problems, but how do I create the manifest-file correctly ?