Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10649)

  • Linux ffmpeg live transcode'ing alternative

    1er août 2014, par ppoeas

    Is there any opensource alternative to ffmpeg and VLC to live video transcoding from HTTP streaming to RTMP or other ?

    FFMPEG caused my CPU (AMD 4.0GHZ 8Core) is loaded 100% with only 8 SD streams.

    Thanks for help.

    PS.
    I think I don’t need to transcode my video, i can also stream with something like http video proxy. Source is in HTTP streaming format.

  • Anomalie #4647 (Fermé) : Erreur de changement du logo dans la modale

    5 février 2021

    Sur SPIP 3.3-dev (version 2021.02.04), si on clique sur le logo la 1er fois
    on obtient failed loaded image

    si on regarde la console : on a une erreur de chemin
    https://www.xxxx.tld/ecrire/IMG/logo/yyy.jpg

    sur le 2eme clic, on n’a plus l’erreur on appelle bien
    Call lity image ../IMG/logo/yyy.jpg

  • How to mimic Instagram/TikTok HLS streaming capabilities ?

    30 avril 2023, par nickcoding2

    I'm converting a .mp4 file to HLS in Node.js and storing it in S3. What are the important options to pass in here ? I'm currently passing in the below, because that's what was suggested in some online tutorial I followed.

    


    '-profile:v baseline',
'-level 3.0',
'-start_number 0',
'-hls_time 3',
'-hls_list_size 0',
'-f hls'


    


    Should I be lowering the hls_time parameter to say, 1 ? Isn't the smaller that number, the more granular each segment is, and the quicker each segment of the stream will be loaded on the client side ? What are other things to consider here ? I'd like to get as close to TikTok/Instagram media playing capabilities as possible.