Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang 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.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (10880)

  • Revision 8c9e22e939b9c788a31bcd06580d5a0e0f0a8ecf : Bug dans le squelette privé de suivi RSS de forum, report de [15966] ...

    22 août 2010, par Committo,Ergo:sum — Log

    Bug dans le squelette privé de suivi RSS de forum, report de [15966] git-svn-id : svn ://trac.rezo.net/spip/branches/spip-2.0@15967 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d

  • Evolution #4063 : Position de la prévisualisation / ergo presentation formulaire forum

    12 février 2021, par b b

    mais le rendu est encore vraiment moyen, on a des kilometres de blanc entre "Un message un commentaire" et les checkbox de mots cles parce que les fieldset ont des tonnes de margin partout et s’enchainent.

    Je ne vois pas où est la prévisu dans ton image....

    Et puis bon, l’exemple tiré par les cheveux avec 48 mots clés affichés dans le forum est certainement bien loin du cas d’usage "classique", non ?

  • Is it possible to stream MJPEG content over MPEG-DASH ?

    26 juillet 2021, par Eloy Schultz

    I am trying to re-stream an MJPEG stream over dash using ffmpeg.

    


    I have an ESP32 camera module that outputs an MJPEG livestream at 192.168.2.128:81/stream (Arduino code here).
I can open this stream directly in the browser and see the video in realtime, but the camera will only allow for a single client at a time while I am in need of a multi client solution.

    


    What doesn't work

    
A solution I am currently trying to implement is to use a seperate server (Raspberry Pi) running apache and ffmpeg to re-stream the MJPEG content using DASH :


    ffmpeg -re -i http://192.168.2.128:81/stream -strict -2 -an -c:v copy -b:v 2000k -f dash -window_size 4 -extra_window_size 0 -min_seg_duration 2000000 -remove_at_exit 1 /var/www/html/out.mpd


    


    I get no errors when executing this command on the server.
I then use this ffmpeg-dash.html to display the video in the browser.
This code unfortunately fails, in Firefox the console reports the error :

    


    [72][Stream] No streams to play.


    


    followed by :

    


    Cannot play media. No decoders for requested formats: video/mp4;codecs="mp4v.6c";width="640";height="480"


    


    What does work

    
What is puzzling me is that the above code works fine if I replace the MJPEG livestream url with a sample .mkv file, so if I use


    ffmpeg -re -i /var/www/html/video.mkv -strict -2 -an -c:v copy -b:v 2000k -f dash -window_size 4 -extra_window_size 0 -min_seg_duration 2000000 -remove_at_exit 1 /var/www/html/out.mpd


    


    I can view the livestreamed sample video (video.mkv) without problems using the previously mentioned ffmpeg-dash.html file.
Furthermore, it seems that ffmpeg can read the MJPEG livestream without problems, since

    


    ffmpeg -t 10 -i http://192.168.2.128:81/stream -filter:v fps=15 -c:v flv test.flv


    


    returns a 10 second clip of the livestream succesfully.

    


    So to me it seems that the problem lies in how I combine the two. What am I missing ? Is it even possible to stream MJPEG content over MPEG-DASH ?
(I am new to this, sorry in advance for my ignorance)