Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (104)

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

  • How to convert silk audio file from WeChat to amr format ?

    20 février 2017, par hzwzw

    When I developing WeChat mini program, I want to achieve the voice control. but the audio provided by WeChat client is silk.

    I need to convert the silk file to some format can be recognized by 3rd voice detection service.

    Some 3rd services support amr format. It’s really great, because the size could be very small.

  • How to convert silk audio file from WeChat to amr format ?

    28 juin 2024, par hzwzw

    When I developing WeChat mini program, I want to achieve the voice control. but the audio provided by WeChat client is silk.

    



    I need to convert the silk file to some format can be recognized by 3rd voice detection service.

    



    Some 3rd services support amr format. It's really great, because the size could be very small.

    


  • FFMPEG C++, Best practise / pattern for encoding a live feed

    21 mars 2016, par MrSmith

    I have got working code that captures from /dev/videox and encodes a h264 file just fine, that is like this :

    1. grab frame from camera
    2. possibly do a rgb-yuv tango
    3. encode with ffmpeg lib
    4. repeat

    Single thread.
    Now here is my thinking, if the time taken for 2 and 3 sums up to be larger than 1/25th of a second I will miss a frame from the camera.
    Not unfeasable right ?
    A spike in load on the target system and frame(s) are dropped.
    So I am thinking I should thread this and put in a buffer between capture and encoding.
    Now the question(s) is.

    1. Is my line of thinking correct ?
    2. Is my solution a variable one ?
    3. How much of a problem is it really, would it fail anyway, am I about to create a solution for which there is no problem.

    Insights ? :)

    Thanks