Recherche avancée

Médias (91)

Autres articles (33)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (3359)

  • Live WebRTC streams (getUserMedia) to DASH using WebM

    4 septembre 2015, par cyp

    I’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 cyp

    I'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 CodingIsMagic

    There 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 !