Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (52)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4431)

  • cbs_mpeg2 : Rearrange start code search

    29 juillet 2019, par Andreas Rheinhardt
    cbs_mpeg2 : Rearrange start code search
    

    1. Currently, cbs_mpeg2_split_fragment uses essentially three variables
    to hold the start code values found by avpriv_find_start_code. By
    rearranging the code, one of them can be omitted.
    2. The return value of avpriv_find_start_code points to the byte after
    the byte containing the start code identifier (or to the byte after the
    last byte of the fragment's data if no start code was found), but
    cbs_mpeg2_split_fragment needs to work with the pointer to the byte
    containing the start code identifier ; it already did this, but in a
    clumsy way. This has been changed.
    3. Also use the correct type for the variable holding the
    CodedBitstreamUnitType.

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

    • [DH] libavcodec/cbs_mpeg2.c
  • In which situation we need to used ffmpeg as Native (JNI) code in android ?

    16 octobre 2019, par axita.savani

    I am used FFmpeg as Library now. But when i have a search in google that some developers said that we can use FFmpeg with JNI as a native library but I’ll really don’t know why the developer said that, I think it’s related to the speed of exporting or code not display at App-decompile time.

    But I don’t know in which situations and which requirements then we used FFmpeg native code in android ?

  • Error on linking ffmpeg example code in linux

    15 novembre 2013, par user2995111

    I'm trying to work on the ffmpeg example source file. Now, I'm trying to compile and link from the command line but I can't seem to get it to link.

    I compiled the code and generated obj file.

    My problem is on linking ,

    I just tried this :

    gcc -Wall -o example -L/home/jayanthi/example -lavcodec -lavutil example.o

    At this point, I get error of 'undefined reference error'

    example.o: In function `audio_encode_example&#39;:
    example.c:(.text+0x25): undefined reference to `avcodec_find_encoder&#39;
    example.c:(.text+0x6a): undefined reference to `avcodec_alloc_context3&#39;
    example.c:(.text+0xad): undefined reference to `avcodec_open&#39;
    example.c:(.text+0x1ce): undefined reference to `sin&#39;
    example.c:(.text+0x238): undefined reference to `avcodec_encode_audio&#39;
    example.c:(.text+0x297): undefined reference to `avcodec_close&#39;
    example.c:(.text+0x2a3): undefined reference to `av_free&#39;
    example.o: In function `audio_decode_example&#39;:
    example.c:(.text+0x2f7): undefined reference to `av_init_packet&#39;
    example.c:(.text+0x30b): undefined reference to `avcodec_find_decoder&#39;
    example.c:(.text+0x359): undefined reference to `avcodec_alloc_context3&#39;
    example.c:(.text+0x379): undefined reference to `avcodec_open&#39;
    ..... etc.
    collect2: ld returned 1 exit status

    please help me out