Recherche avancée

Médias (91)

Autres articles (56)

  • 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 ;

  • 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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5620)

  • How to link Eclipse Indigo in Ubuntu 11 to FFMPEG 8 for C++

    16 octobre 2013, par AMB0027

    I have tried everything in the book and EVERYTHING I could find on how to do this and reinstalled and reconfigured and rebuilt several times to no avail. This is what I have. I've made FFMPEG on my Ubuntu VM and have the following code written :

    #include "libavcodec/avcodec.h"
    #include "libavformat/avformat.h"

    #include
    #include <iostream>

    using namespace std;

    int main( int argc, char* argv[] ) {

       avcodec_register_all();

       return 0;
    }
    </iostream>

    This errors and says :

    /home/adam/workspace/MP4 Tools/Debug/../testDriver.cpp:19: undefined reference to     `avcodec_register_all()&#39;
    collect2: ld returned 1 exit status

    I have included the libavcodec.a file. Project->Properties->GCC C++ Linker->Libraries->add "avcodec"

    Can anyone think of something I'm not doing or overlooking ? Thanks so much.

  • How to salvage a gigantic, possibly corrupt, AIFF file ?

    12 février 2012, par Ross Duncan

    Due to a Sound Track Pro glitch, I have a problematic AIF file. It plays fine in QuickTime Player, and is about 1 hour 50 mins long. However :

    • It's 3.81GB in size, whereas (I believe) AIF files are only supposed to be 2GB or smaller.
    • iTunes refuses to play it.
    • Logic Pro gives the error message "party-mix.aif is empty!" when I try to import it.
    • VLC will open and play the file, but it ends after an 1 hour (I guess this is the 2GB point).
    • Attempting to transcode using ffmpeg to Ogg gives the errors,

      [aiff @ 0x102051000] max_analyze_duration 5000000 reached at 5001333

      ....

      [pcm_s16be @ 0x10205a200] invalid PCM packet

      but the resulting file plays in VLC up till 1 hour, when it ends.

    • Attempting to transcode using ffmpeg to MP3 gives similar results as Ogg, except that the number of channels must reduced from 6 to 2. This is odd because it was a stereo project - where the extra 4 channels came from I have no idea.
    • There are a few places where the audio has been very noticeably sped up.

    My question : how can I transcode this frankenstein monster to MP3 without losing the second half ? I am running Mac OS 10.6.8.

  • Changing the bit rate of an MP3 bitrate on Android without ffmpeg

    19 avril 2013, par illusion softworks

    In my project, I have a 320kbps MP3 that is quite large. Since it's so big, I'd like to convert it to use a lower bit rate (about 80kbps).
    I know that the ffmpeg library exists to do this, but using ffmpeg in Android is very complex.

    Is there another way to change the MP3 bit rate that does not use ffmpeg in Android ?