Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (22)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (4222)

  • what is the simplest video librery to use in visual studio c [on hold]

    9 mai 2017, par 0xPwn

    I’m looking to build a simple video player in c , visual studio.

    i’m want to change part’s of the movie while loading it to memory so it’s have to be low level enough for this.

    my first choice was ffmpeg+sdl , the problem is that i downloaded the dev version from ffmpeg website and i get dll.a and .def with the .lib , windows don’t run the exe i make from visual studio because he doesn’t found the dll’s (they are dll.a), i change their names but then i got "this either don’t designed to run on windows..." , i try to use the dll’s from the "shared" package , but i get corruption ...

    so what is my outer options ?
    (if any one know how to solve the above problem i really appreciate it).

    (i have to be able to make an .exe 32bit, don’t have to be with visual studio
    it’s supposed to be low level enough to allow me change parts of the video in
    real time).

  • correcting captured dvb-t video from two different mpeg-ts sources

    17 février 2013, par Ondra Kocian

    I have captured same channel (two files - full multiplex of dvb-t - mpeg-ts) from different dvb-t transmitters :

    Transmitter-A.ts
    Transmitter-B.ts

    I would like to merge these streams to produce one perfect video of channel to correct failtures in signal from transmitter-B and transmitter-A - I know there are frame gaps lets say :

    Transmitter-A.ts 1:10-1:20
    Transmitter-B.ts 2:30-2:35

    Is there some existing tool to do so ? Do I have to go to the frame level of ts packet and compare them between streams(lets say find I-frames-will they fit ? And compare them) ? I hoped pts and dts timestamps would fit but didnt - is there some way to use pcr or any stamp in ts packet preventing me to go on frame level ?

  • ffmpeg command to get master manifest file in hls where all renditions are pointed to a single m3u8 file [closed]

    28 décembre 2023, par user2975644

    ffmpeg command to get master manifest file in hls where all renditions are pointed to a single m3u8 file.The video reolutions are 360p,540p,720p and 1080p.

    


    I have tried with the below command but unable to get the desired output :

    


    ffmpeg -i Test_video.mp4

    


    -c:v libx264 -g 48 -keyint_min 48 -sc_threshold 0 -c:a aac -b:a 64k

    


    -vf "scale=640:360" -b:v 500k -maxrate 100k -bufsize 1000k -profile:v main -level 3.1 -f hls -hls_time 10 -hls_list_size 0 -hls_segment_filename 360p%03d.ts 360p.m3u8

    


    -vf "scale=960:540" -b:v 800k -maxrate 1600k -bufsize 1000k -profile:v main -level 3.1 -f hls -hls_time 10 -hls_list_size 0 -hls_segment_filename 540p%03d.ts 540p.m3u8

    


    -vf "scale=1280:720" -b:v 1500k -maxrate 3000k -bufsize 3000k -profile:v main -level 3.1 -f hls -hls_time 10 -hls_list_size 0 -hls_segment_filename 720p%03d.ts 720p.m3u8

    


    -vf "scale=1920:1080" -b:v 3000k -maxrate 6000k -bufsize 6000k -profile:v main -level 3.1 -f hls -hls_time 10 -hls_list_size 0 -hls_segment_filename 1080p%03d.ts 1080p.m3u8

    


    hls_playlist_type vod -master_pl_name master.m3u8