Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (6382)

  • ffmpeg motion the missing frame is coming [duplicate]

    24 mars 2021, par Ali Gökkaya

    I send the image I take from rtps to rtmp according to the motion state.

    


    My frame disappears before it moves

    


    when it moves again, the disappearing frame appears and shows the first one

    


    how can i solve this situation

    


    ffmpeg \&#xA;-rtsp_transport tcp -skip_frame bidir -i rtsp://<ip>:<port>/... \&#xA;.&#xA;.&#xA;.&#xA;-r 3 -g 40 -s 848x480 -c:v libx264  \&#xA;-filter_complex "select=&#x27;gt(scene\,0.004)&#x27;,setpts=&#x27;if(eq(N\,0),0,PREV_OUTPTS&#x2B;if(lte(T-PREV_INT\,10)\,(T-PREV_INT)/TB\,N*3/TB))&#x27;" \&#xA;-loglevel error rtmp:////<ip>:<port>/... &#xA;</port></ip></port></ip>

    &#xA;

    What are your suggestions in this situation ? What can I do ?

    &#xA;

  • Revision 3f1af6e85e : aq-mode=3 : Update to allow for refresh on modes other than zero-mv. Add distort

    22 janvier 2015, par Marco

    Changed Paths :
     Modify /vp9/encoder/vp9_aq_cyclicrefresh.c


     Modify /vp9/encoder/vp9_aq_cyclicrefresh.h


     Modify /vp9/encoder/vp9_encodeframe.c



    aq-mode=3 : Update to allow for refresh on modes other than zero-mv.

    Add distortion threshold condition to refresh state of a coding block,
    and allow for qp adjustment also for some intra modes and non-zero motion modes.

    Also some code cleanup (remove unused variables/code).

    Change-Id : I735fa2b28bc64f60e0323976b82510577b074203

  • Download m3u8 playlist and merge into one C#

    10 août 2014, par trinvh

    Solution 1 :

    I tried this by using create a ffmpeg wrapper, read output from cmd with following command :

    -i \"{m3u8-url-for-download}\" -y -c copy -bsf:a aac_adtstoasc \"{destination-filename}\"

    I can get duration, current state for downloading. Everything seems be ok. However sometimes it crashed and I can’t detect why. It isn’t ALWAYS, but SOMETIME.

    Solution 2 :

    I download m3u8 playlist file and get contents within it. It contains an array *.ts file url that I can easily download by using HttpClient. But I don’t know how to combine these *.ts file into one mp4 file that keeps their format.

    Are there other solutions for doing this ?