
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (89)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (13637)
-
Applying video filters on MPEG Dash segments
5 décembre 2019, par michalSolarzI know that it will probably require recreating whole MPEG Dash stream but I’m curious if is it possible to apply a drawtext video filter on existing Dash segments ? I I’ve managed to merge segments with init MP4 and apply that filter on it but I’ve no idea how and if it is possible to recreate MP4 segment similar to input one, fragmented and with only media data as input one ?
-
Use FFmpeg to create MPEG-DASH files
2 juillet, par angel_30I know using
ffmpeg
, we can create MPEG-DASH ready files, including the segments and the .mpd manifest file. For instance, I'm trying this command which works :

ffmpeg -re -i .\video-h264.mkv -map 0 -map 0 -c:a aac -c:v libx264 -b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline -profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -ar:a:1 22050 -use_timeline 1 -use_template 1 -window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash out.mpd



But I don't want to segment the video- so a simpler version where we have multiple versions of the whole video, no chunks. Does MPEG-DASH allow it ? If so, how can I use
ffmpeg
to do it without creating the chunks ?

-
Live Streaming With Dash While Converting MP4 to WEBM
3 mai 2021, par kisrobyI need to convert mp4 files to webm in order to stream it using WebRTC (In Chrome I believe only VP8 is supported at the moment).


I'd like to stream it to WebRTC while it's converting, so what I've come up with is to use the DASH streaming technique.


So, my question would be, is that possible to use DASH and convert the segments from H264 to VP8 codec WITHOUT firstly converting the file to webm ?