Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (80)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7177)

  • Evolution #4060 (Nouveau) : Nettoyage du code PHP 5.4

    11 décembre 2017

    Quelques tests sont présents dans le code pour tester des vieilles versions de SPIP.
    => Les trouver, et les enlever.

  • 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':
    example.c:(.text+0x25): undefined reference to `avcodec_find_encoder'
    example.c:(.text+0x6a): undefined reference to `avcodec_alloc_context3'
    example.c:(.text+0xad): undefined reference to `avcodec_open'
    example.c:(.text+0x1ce): undefined reference to `sin'
    example.c:(.text+0x238): undefined reference to `avcodec_encode_audio'
    example.c:(.text+0x297): undefined reference to `avcodec_close'
    example.c:(.text+0x2a3): undefined reference to `av_free'
    example.o: In function `audio_decode_example':
    example.c:(.text+0x2f7): undefined reference to `av_init_packet'
    example.c:(.text+0x30b): undefined reference to `avcodec_find_decoder'
    example.c:(.text+0x359): undefined reference to `avcodec_alloc_context3'
    example.c:(.text+0x379): undefined reference to `avcodec_open'
    ..... etc.
    collect2: ld returned 1 exit status

    please help me out

  • 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