
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 (81)
-
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 (10817)
-
Problem to convert Mp4 to MPEG DASH with FFMPEG codec Vp9 in linux
4 mars 2020, par Sean Pribadii need to convert mp4 to mpeg Dash and stream .Mpd with dash.js. everything looks fine on windows, but there are trouble when i generate Mpd in linux.
Step by step in windows :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
- stream config.mpd, init, and chunk file with dash.js player.
everything work when i run ffmpeg on windows
when i ran on linux :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
no error and everything looks good. But when i stream with dash.js.
- stream with dash.js player
when i stream config.mpd with dash.js player, there are infinity request enter image description here
what i have tried :
1. change init-stream build by linux with init-stream build by windows [Work]
2. change codec to libx264 [also work in linux]the problem is just convert video to MPEG dash with webm codec (vp8/Vp9) in linux
- stream config.mpd, init, and chunk file with dash.js player.
-
Convert MP4 to MPEG-DASH with multiple bitrates
3 août 2020, par JavaIs there any simple way to convert a MP4 to MPEG-DASH.
I have tried so many resources but nothing works. I want at least a SD and a HD version.


-
ffmpeg - capture defined playlist from MPEG-DASH
11 février 2021, par KlodeI'm working on capture a public MPEG-DASH streaming. I want to use ffmpeg in order to generate a playable MKV without other software (like streamlink).


So, I can read all playlists inside the MPEG-DASH, each for every bandwidth for video, like 432p, 576p, 720p, and different bandwidth for 1080p. So I can get these playlists and their properties, like the Name.


I want to select one of these playlist and capture this single playlist only with ffmpeg, but I cannot understand which command I can use.


Thanks so much for your help.