Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (60)

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

  • 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

Sur d’autres sites (7594)

  • Encoding RGB to MPEG too Slow

    26 avril 2018, par tkellehe

    Encoding RGB to MPEG too Slow

    Hello, I am using the ffmpeg C++ library to encode raw RGBA32 video data into MPEG. I first use sws_scale to get the raw RGBA32 video data into YUV420p. From there, I take that buffer and encode it using the avcodec_encode_video2 function. Everything works/looks fine (except I am not too excited about the loss in quality from the two jumps), but what is really bothering me is that it takes about 8ms for the first step and another 8ms for the next step (best case). And this is per frame ! This means that with a FPS of 60 it takes at least the length of the recording to get it into MPEG !

    My Question

    Is there a format to encode to that does not cause me to take forever and a day to encode into ? If so, is there a C++ library to do this such as ffmpeg ?

  • Added : Support for Chapter sub levels.

    5 octobre 2013, par Grandt
    Added : Support for Chapter sub levels.
    

    Rev. 2.53 - 2013-10-05
    * Added : Support for Chapter levels.
    * Added functions :
    * ->subLevel() to indent one level under the current, additional
    chapters are added under that.
    * ->backLevel() to step one level back to the parent of the current
    level.
    * ->rootLevel() to step back to the root of the navMap.
    * ->getCurrentLevel() to get the current level indentation (root = 1).
    * ->setCurrentLevel(int) to set the current level indentation (1 or
    less returns to the root, same as ->rootLevel()).
    * ->buildTOC now reflects this level indentation if present.
    * ePub250 is otherwise compatible to the previous version, and no
    modifications are needed if you don't need this feature.

  • FFmpeg streaming low CRF results in low quality

    12 août 2019, par Max Paython

    I am streaming(live chat) with FFmpeg using the following parameters.

    ffmpeg -f dshow -rtbufsize 100M -i video="device":audio="device" \
    -c:v libx264 -crf 30 -preset ultrafast -tune zerolatency \
    -c:a aac -f mpegts udp://127.0.0.1:1234

    Unexpectedly, when CRF is lowered from 30 to 20, step-by-step. The stream quality decreases dramatically. When the CRF is about 20, sudden changes in the picture (like a head movement), seems to make the image green, gray or very distorted. I tried using CRF 30, and the problems seems to be gone. Why is this happening ?

    I don’t think it is a bandwidth issue given that I am on localhost. Also I didn’t change anything based on I-frames.

    Edit : I checked the file sizes given CRF 20 and CRF 30 on libx265.

    10 Second video.

    CRF 20 : 1.7M

    CRF 30 : 350kb

    Is 1.7M really bad for a 10 second stream that localhost or any other live streaming sevice can’t handle ?