
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 (51)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (9247)
-
Live WebRTC streams (getUserMedia) to DASH using WebM
4 septembre 2015, par cypI’m trying to understand the feasibility of a live streaming solution.
I want to grab WebRTC streams (audio and video), send them to a server and transform them in chunks to send to a html5 video tag or a DASH player using WebM container (VP8 and Opus codecs).I also looked into ffmpeg, ffserver and gstreamer but...
My question is how to feed the WebRTC streams (live) and transform them in HTTP chunks (live DASH compatible) ?
Anyone achieved something like this ?
-
Live WebRTC streams (getUserMedia) to DASH using WebM
3 avril 2023, par cypI'm trying to understand the feasibility of a live streaming solution. 
I want to grab WebRTC streams (audio and video), send them to a server and transform them in chunks to send to a html5 video tag or a DASH player using WebM container (VP8 and Opus codecs).



I also looked into ffmpeg, ffserver and gstreamer but...



My question is how to feed the WebRTC streams (live) and transform them in HTTP chunks (live DASH compatible) ?



Anyone achieved something like this ?


-
How should I configure FFmpeg to restrict the size and duration of dash chunks ?
30 juillet 2022, par CodingIsMagicThere is a .mp4 file of 35 MB and 51 seconds. I want to create 51 dash chunks, each corresponding to 1 second with a size of less than 1MB (the total size should be almost the same as the original file). Please note that I want to implement lossless converting.


ffmpeg -re -i Animated-Background_Bidirection.mp4 -map 0:0 -c:v libx264 -crf 1 -profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -seg_duration 1 -window_size 60 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash ./dashTest/out.mpd




Please, if you want to put a negative point, mention your reason in the comments !