Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (93)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6403)

  • FFmpeg libraries on Windows - Undefined References

    26 novembre 2018, par Gomes

    I am trying to use FFmpeg libraries available from here under Windows 10 (64 bits). I downloaded version=20181126-90ac0e5, architecture=Windows-64, Linking=Dev. There are 3 folders inside that FFmpeg folder : examples, lib and include.
    To use these libraries I copied the contents of the "include" folder to the "include" folder of my MinGW installation. I also copied the contents of the "lib" folder to the "lib" folder of MinGW.
    I try to compile the decode_video.c example that comes inside the examples folder with the following way :

    gcc decode_video.c -o decode_video.exe -lavcodec -lavutil -lavformat -lm

    The compiler gives me these undefined references :

    undefined reference to `avcodec_send_packet'
    undefined reference to `avcodec_receive_frame'
    undefined reference to `av_packet_alloc'
    undefined reference to `avcodec_find_decoder'
    undefined reference to `av_parser_init'
    undefined reference to `avcodec_alloc_context3'
    undefined reference to `avcodec_open2'
    undefined reference to `av_frame_alloc'
    undefined reference to `av_parser_parse2'
    undefined reference to `av_parser_close'
    undefined reference to `avcodec_free_context'
    undefined reference to `av_frame_free'
    undefined reference to `av_packet_free'

    I would like to know what I am doing wrong here. Any guidance is very welcome.

  • Revision 6356d21a47 : vp9_denoiser_sse2.c : solve windows build error. Change-Id : Ib5df91c8580d5dbeb0b

    17 octobre 2014, par JackyChen

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_denoiser_sse2.c



    vp9_denoiser_sse2.c : solve windows build error.

    Change-Id : Ib5df91c8580d5dbeb0b3554edc9c2ca906ba4c4d

  • Windows media player showing wrong bit rate

    30 octobre 2011, par Akash

    I used ffmpeg to change the bit rate of a .mp3 file from 128kbps to 64kbps

    here are the final lines of output of ffmpeg :

    size=    2261kB time=00:04:49.38 bitrate=  64.0kbits/s
    video:0kB audio:2261kB global headers:0kB muxing overhead 0.011274%

    Tough the file size is reduced by half, windows media player while playing the file shows the bit-rate is 159 K bits/second

    Any ideas on why is this so ?