Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (70)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (13888)

  • Try to find a HLS server stream live ?

    9 octobre 2015, par azef

    My goal : Stream a live HLS video in browser.

    I have in a folder m3u8 files with some .ts. I can play the m3u8 in browser. But this isn’t a live stream.
    So i try to find a server to stream a HLS in live.
    I work on Linux Ubuntu 14.04.

    For example :
    input /home/master.m3u8 i would like output http://127.0.0.1/master.m3u8
    A flash player in browser play http://127.0.0.1/master.m3u8

    Thx

  • How to encode .cap Closed Caption into MPEG video

    24 janvier 2019, par Sanjeev Pandey

    I have a .cap Closed Captions file and a .mpg video that I want to add this into. I have seen several hundreds examples of how this is done for .srt (subtitles) and any video format using ffmpeg but there is no solution that I could find for .cap.

    End goal is converting this video with Closed Caption to HLS stream. There are two ways it could be done, I think :
    1. Encode the captions to video first > Then convert to HLS
    OR
    2. Convert the video to HLS first > Then add closed captions on .ts segments

    I could not find a way to include the .cap file though. ffmpeg throws the following error -
    mycaptionsfile.cap: Invalid data found when processing input

    This is the cmd I am using for my video to hls conversion though -
    ffmpeg -hide_banner -y -i myvideo.mpg -vf scale=w=1280:h=720:force_original_aspect_ratio=decrease -c:a aac -ar 48000 -c:v h264 -profile:v main -crf 20 -sc_threshold 0 -g 48 -keyint_min 48 -hls_time 4 -hls_playlist_type vod -b:v 2800k -maxrate 2996k -bufsize 4200k -b:a 128k -hls_segment_filename 720p_%03d.ts 720p.m3u8

  • LL-HLS (CMAF/fMP4) minimize latency with FFplay

    16 mai 2024, par DanielB6

    How do I minimize latency when streaming LL-HLS (CMAF/fMP4) via FFplay ?

    


    I configured a live video stream which is broadcast from a media server using LL-HLS. I see the following results :

    


      

    • HLS.js : 2 seconds behind the source
    • 


    • FFplay (./ffplay "https://<server>/<path>/playlist.m3u8"</path></server>) : 8 seconds behind the source
    • &#xA;

    • FFplay (./ffplay -fflags nobuffer -flags low_delay -strict experimental "https://<server>/<path>/playlist.m3u8"</path></server>) : 5 seconds behind the source
    • &#xA;

    &#xA;

    My goal is to achieve what HLS.js can achieve in a browser, 2 seconds behind the source.

    &#xA;