Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (104)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (10891)

  • Video players questions

    31 mai 2015, par yayuj

    Given that FFmpeg is the leading multimedia framework and most of the video/audio players uses it, I’m wondering somethings about audio/video players using FFmpeg as intermediate.

    I’m studying and I want to know how audio/video players works and I have some questions.

    I was reading the ffplay source code and I saw that ffplay handles the subtitle stream. I tried to use a mkv file with a subtitle on it and doesn’t work. I tried using arguments such as -sst but nothing happened. - I was reading about subtitles and how video files uses it (or may I say containers ?). I saw that there’s two ways putting a subtitle : hardsubs and softsubs - roughly speaking hardsubs mode is burned and becomes part of the video, and softsubs turns a stream of subtitles (I might be wrong - please, correct me).

    • The question is : How does they handle this ? I mean, when the subtitle is part of the video there’s nothing to do, the video stream itself shows the subtitle, but what about the softsubs ? how are they handled ? (I heard something about text subs as well). - How does the subtitle appears on the screen and can be configured changing fonts, size, colors, without encoding everything again ?

    • I was studying some video players source codes and some or most of them uses OpenGL as renderer of the frame and others uses (such as Qt’s QWidget) (kind of or for sure) canvas. - What is the most used and which one is fastest and better ? OpenGL with shaders and stuffs ? Handling YUV or RGB and so on ? How does that work ?

    • It might be a dump question but what is the format that AVFrame returns ? For example, when we want to save frames as images first we need the frame and then we convert, from which format we are converting from ? Does it change according with the video codec or it’s always the same ?

    • Most of the videos I’ve been trying to handle is using YUV720P, I tried to save the frames as png and I need to convert to RGB first. I did a test with the players and I put at the same frame and I took also screenshots and compared. The video players shows the frames more colorful. I tried the same with ffplay that uses SDL (OpenGL) and the colors (quality) of the frames seems to be really low. What might be ? What they do ? Is it shaders (or a kind of magic ? haha).

    Well, I think that is it for now. I hope you help me with that.

    If this isn’t the correct place, please let me know where. I haven’t found another place in Stack Exchange communities.

  • avcodec/flacenc : Fix memleak upon init error

    29 novembre 2020, par Andreas Rheinhardt
    avcodec/flacenc : Fix memleak upon init error
    

    An AVMD5 struct would leak if an error happened after its allocation.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/flacenc.c
  • How to prevent ffmpeg from crashing if UDP target is unreachable

    17 décembre 2014, par sg90

    I am using ffmpeg to capture an input video feed from a capture device, save to disk, and relay the feed via udp to a host machine. When the network is down, i.e. an unplugged cable, or faulty switch, or the host is down, ffmpeg crashes with :

    [mpeg1video @ 0x2fdcb20] ignoring invalid SAR: 0/0
    Last message repeated 38 times
    av_interleaved_write_frame(): Network is unreachable
    frame=  758 fps= 25 q=1.0 size=     616kB time=00:00:30.24 bitrate= 166.7kbits/sframe=  758 fps= 25 q=1.0 Lsize=     616kB time=00:00:30.24 bitrate= 166.7kbits/s<br />
    video:616kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000000%
    Conversion failed!

    When the network crashes, this also crashes the saving to disk. Unfortunately my capture device cannot handle multiple simultaneous access so I can’t split this into two processes (easily).

    I would like to make the UDP streaming fault tolerant to continue trying to stream the next frame if it can’t send any packets. As UDP is "fire and forget", I am quite surprised this already isn’t the default behaviour - I’d even expect HTTP streaming to do the same without crashing. Surely this has happened to other ffmpeg users ?

    Is there a flag I can set to continue/ignore the "Network is unreachable" exception thrown ?

    I’d like to do this without making a custom build of ffmpeg, but if anyone has tried this before I would appreciate any pointers.

    Thanks