Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (70)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9101)

  • movenc : Support adding isml (smooth streaming live) metadata

    20 janvier 2012, par Martin Storsjö

    movenc : Support adding isml (smooth streaming live) metadata

  • movenc : Support adding isml (smooth streaming live) metadata

    20 janvier 2012, par Martin Storsjö

    movenc : Support adding isml (smooth streaming live) metadata

  • Synchronization and concurrency for creating hls resolutions for Live Streaming

    25 février 2017, par parsa

    Is there any way for creating resolutions for a video in hls format at the one command ?
    I have a convert server,and I think for have live streaming with multiple resolutions, I must be create all resolutions at the same time and this process must be concurrent.
    I raised this issue,because I do this process wtih running these below codes at 4 cmd seperately for creating 4 resolutions of a video examply at the same time :
    1- 720p

    ffmpeg -i 123.mp4 -c:a aac -strict experimental -c:v libx264 -s hd720 -aspect 16:9 -f hls -hls_list_size 0 -hls_time 2 720p/out.m3u8

    2- 480p

    ffmpeg -i 123.mp4 -c:a aac -strict experimental -c:v libx264 -s hd480 -aspect 16:9 -f hls -hls_list_size 0 -hls_time 2 480p/out.m3u8

    3- 360p

    ffmpeg -i 123.mp4 -c:a aac -strict experimental -c:v libx264 -s nhd -aspect 16:9 -f hls -hls_list_size 0 -hls_time 2 360p/out.m3u8

    4- 200p

    ffmpeg -i 123.mp4 -c:a aac -strict experimental -c:v libx264 -s cga -aspect 16:9 -f hls -hls_list_size 0 -hls_time 2 200p/out.m3u8

    but doing in this way have some problems.
    1- the .TS parts of each resolutions doesn’t create with another resolutions part at the same time(this issue makes that in switching resolutions, player cannot seek to the continue of selected resolution,because that part doesn’t create yet).
    2- You have run some threads for each live streaming.