
Recherche avancée
Autres articles (102)
-
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 en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (10040)
-
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 ?