Recherche avancée

Médias (91)

Autres articles (44)

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

  • Evolution #3770 : Logo des articles sur les listes

    10 février 2021, par RastaPopoulos ♥

    IE c’est moins de 1% des utilisations, je pense qu’il faut arrêter même de prononcer son nom (ça peut le faire venir, comme vous savez qui)

  • Using static Ffmpeg .exe with libavformat linked in project

    10 février 2015, par Dries

    I’m trying to do something like the following example :

    https://www.ffmpeg.org/doxygen/0.6/output-example_8c-source.html

    If you want to do this you have to include libavformat in your project. Until now I’ve been working with the command line tool from ffmpeg with which you don’t have to include anything.

    At this point I seem to need the libavformat if I want to properly describe the frames I’m going to write to the output file.

    Is it possible to use libavformat as a seperate .lib in my project without having to include everything ffmpeg delivers, and can I then still use the .exe from ffmpeg ? This should be possible because otherwise there would be some license issues with some codecs.

    The user of my project needs to be able to change the ffmpeg .exe to be able to choose different codecs who were not supplied by me.

  • Grab audio samples with ffmpeg and C, error with official example code

    31 août 2020, par nji9

    For dev with mingw-w64 I'm using ffmpeg v. 4.3.1. and also the latest Git version of ffmpeg (Zeranoe's Windows 64 builds).

    


    I get "strange" problems when running the official example code for decoding audio

    


    https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/decode_audio.c

    


    MP3DirectCut(Lib-bass).mp3

    


    http://www.mediafire.com/file/ozmjjcpwyhhdnr7/MP3DirectCut(Lib-bass).mp3/file

    


    Generates pcm, but outputs :

    


    "Warning: the sample format the decoder produced is planar (s16p).
This example will output the first channel only."


    


    But the output pcm has both channels !??

    


    When recoding the above mp3 to wav with ffmpeg (4.1.4, no error message)

    


    http://www.mediafire.com/file/gcq7ryg43pd57q5/ffmpeg4.1.4.wav/file

    


    and also when recoding the latter to mp3 again

    


    http://www.mediafire.com/file/ij865dkrprn2lta/ffmpeg4.1.4_recode.mp3/file

    


    the example code breaks and produces these error messages :

    


    avcodec_send_packet ()&#xA;from within:&#xA;"[mp2 @ <someaddress>] Header missing"&#xA;and returns error code -1094995529&#xA;(= "Invalid data found when processing input")&#xA;</someaddress>

    &#xA;

    It produces that error message for literally all other formats&#xA;I tried, and also when written with another editor (Audition 3.0).&#xA;But all the files play and show fine on all programs I have.

    &#xA;

    I'm at a lost at this point.&#xA;What is going on and wrong here ?

    &#xA;