Recherche avancée

Médias (91)

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • ffmpeg not working after update to Mavericks

    26 février 2015, par Hudson Buddy

    After recently updating to Mavericks 10.9.5, my installation of ffmpeg has been bugging out

    Error :

    dyld: Library not loaded: /usr/local/lib/libx264.142.dylib
     Referenced from: /usr/local/bin/ffmpeg
     Reason: image not found
    Trace/BPT trap: 5

    Any thoughts ? I’m not very familar with manual compiling and I installed ffmpeg through Homebrew.

    I tried uninstalling and doing :

    brew install ffmpeg --HEAD
    brew install ffmpeg --build-from-source

    but it spits back a ./configure error

    ==> ./configure --prefix=/usr/local/Cellar/ffmpeg/2.4.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample
    If you think configure made a mistake, make sure you are using the latest
    version from Git.  If the latest version fails, report the problem to the
    ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
    Include the log file "config.log" produced by configure as this will help
    solve the problem.

    READ THIS: https://github.com/Homebrew/homebrew/wiki/troubleshooting

    These open issues may also help:
    gpac 0.5.0 doesn't build against ffmpeg 2.4.1 (https://github.com/Homebrew/homebrew/issues/32978)
  • How to select compile parameter with custom need?

    19 février 2019, par Shucheng

    I need to compile a static FFmpeg on macOS and add this build to a Xcode project. If I download a full version from official website that is work. But this version size is huge, and I just need a few format to convert. So I need to compile by myself.

    I’ve tired to compile and it’s worked. But I am not sure how to select compile parameter.

    For instance, I need to convert : ogg,flac,opus,webm files to mp3 file with the minimum size. And my compile parameter :

     ./configure --enable-ffmpeg --enable-small  --enable-static --enable-protocol=file,http,https --enable-libvorbis \
     --enable-libopus --disable-ffplay --disable-ffprobe --enable-demuxer=mp3,mp4,webm_dash_manifest,opus,flac,ogg \
     --enable-decoder=mp3*,vp*,mpeg4*,opus,flac --enable-libmp3lame  --disable-autodetect --disable-network --enable-pthreads

    But it seems not to work, I can’t convert files. Error reason is dyld: Library not loaded: /usr/local/opt/lame/lib/libmp3lame.0.dylib.But I used parameter --enable-static.

    So what should I do ? If I need to support a format to convert, I need to care about which respect ? Thanks

  • Android, Splitting GIFs with FFMPEG doesnt work

    19 mars 2019, par raddeee

    I wanted to split animated gif files using FFmpeg-Android-Java, so I referenced this question Android, split gif to frames with ffmpeg
    and wrote this code.

    String path = "/storage/emulated/0/Download/mothersday-toaster.gif";
           String cmd[] = {"-i",path,"-vsync","0","/storage/emulated/0/Download/output$03d.png"};

           try {
               // to execute "ffmpeg -version" command you just need to pass "-version"
               ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {

                   @Override
                   public void onStart() {}

                   @Override
                   public void onProgress(String message) {}

                   @Override
                   public void onFailure(String message) {Log.d("Q", "failed to convert");}

                   @Override
                   public void onSuccess(String message) {}

                   @Override
                   public void onFinish() {}
               });
           } catch (FFmpegCommandAlreadyRunningException e) {
               // Handle if FFmpeg is already running
           }

    Although, It always gives me the "failed to convert" log. FFMPEG is already loaded. Is there something wrong with my code ?