Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (77)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10391)

  • FFmpeg can't decode H264 stream/frame data

    31 juillet 2015, par Gediminas

    Recently I had chance to work with two devices that are streaming the H264 through RTSP.
    And I’ve ran into some problem trying to decompress this stream using FFmpeg library.

    Every time the "avcodec_decode_video2" is called - FFmpeg just says something like :

    [h264 @ 00339220] no frame !

    My raw H264 stream I frame data starts like this : "65 88 84 21 3F F8 F8 0D..."
    (as far as I understand this 0x65 indicates that it’s a IDR frame ?)

    Other frames for one device starts like : "41 9A 22 07 F3 4E 48 CC...."

    and for other device - like this : "61 9A 25 C1 1C 45 62 39...."

    • Am I missing some frame data here ?
    • Does FFmpeg needs to have some extra parameters set up ?

    I was expecting at least "00 00 00 01" bytes at the start for the frame data... but this is what I’ve got..

  • avdevice/decklink_dec : do not copy video data

    22 avril 2018, par Marton Balint
    avdevice/decklink_dec : do not copy video data
    

    Create a buffer from the data instead and use the buffer destructor to free the
    DeckLink frame. This avoids a memcpy of the frame data.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/decklink_dec.cpp
  • How to merge the raw pcm data of two channels ?

    15 mai 2019, par maximedupre

    I have two Float32Arrays containing the raw pcm data of the left and right channel. Is it possible to create a Float32Array that combines both channel ? If so, how would I do that ? Can I simply concatenate the arrays ?

    Cheers !