Recherche avancée

Médias (91)

Autres articles (55)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6598)

  • FFmpeg could not read existing .bmp frame sequence to make .avi file ; What is wrong ?

    13 mai 2017, par xakepp35

    Assume current directory contains files in .bmp format, named IMG_0000.bmp, IMG_0001.bmp, and so on. I need to make avi file from them, threating them as a frames. FFmpeg gives me an error, and i could not understand what is wrong. I’ve got following error message :

    D:\WORK\MyFrames>"C:\Users\Den\Downloads\ffmpeg-latest-win32-static\ffmpeg-201 30928-git-c461265-win32-static\bin\ffmpeg.exe" -i d:\WORK\MyFrames\IMG_%4d.bmp
    -r 4 -vcodec h264 -y out.avi
    ffmpeg version N-56715-gc461265 Copyright (c) 2000-2013 the FFmpeg developers built on Sep 28 2013 18:02:00 with gcc 4.8.1 (GCC)
    configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av
    isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab
    le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetyp
    e --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --ena
    ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-l
    ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libsp
    eex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aa
    cenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavp
    ack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
    libavutil      52. 46.100 / 52. 46.100
    libavcodec     55. 33.101 / 55. 33.101
    libavformat    55. 18.104 / 55. 18.104
    libavdevice    55.  3.100 / 55.  3.100
    libavfilter     3. 88.100 /  3. 88.100
    libswscale      2.  5.100 /  2.  5.100
    libswresample   0. 17.103 /  0. 17.103
    libpostproc    52.  3.100 / 52.  3.100
    [image2 @ 022cfa60] Could find no file with path 'd:\WORK\MyFrames\IMG_%4d.bmp
    ' and index in the range 0-4
    d:\WORK\Serega28-3\IMG_%4d.bmp: No such file or directory
  • issue with ffmpeg split mp3 file into ts file(s)

    19 octobre 2016, par KenKenKen

    So I’m trying to split the mp3 file I have into .ts files using ffmpeg. Here’s the command I’m using :

    ffmpeg -i test.mp3 o1.ts

    The test.mp3 is a 28 seconds long audio.
    Then I created a m3u8 file, output.m3u8, with the following content :

    #EXTM3U
    #EXT-X-TARGETDURATION:30

    #EXTINF:28.000,
    http://localhost:8000/o1.ts

    Here’s the folder structure
    folder structure

    Then from command I started a local http server to serve these files

    python -m SimpleHTTPServer 8000

    I entered http://localhost:8000/output.m3u8 into the vlc player, but it doesn’t play it. So what’s the problem with my steps here ?

    Thanks

  • how to merge a mp3 file into a mp4 file with low framerate(0.5) using FFmpeg wrapped in javacv

    21 février 2016, par hychanbb

    The video is with no sound only image and frame rate is 0.5, i want to merge a mp3 file into it, but it seem not work at all. Below it the code

               File folder = Environment.getExternalStorageDirectory();
               String path = folder.getAbsolutePath() + "/DCIM/Camera";
               long millis = System.currentTimeMillis();
               videoPath = path + "/" + "test_sham_"+millis+".3gp";
               try {

               //audio grabber
               FrameGrabber grabber2 = new FFmpegFrameGrabber(folder.getAbsolutePath()+"/Samsung/Music/Over_the_horizon.mp3");

               //video grabber
               FrameGrabber grabber1 = new FFmpegFrameGrabber(path+"/20140527_133034.jpg");
                   grabber1.start();
                   grabber2.start();
                 recorder = new FFmpegFrameRecorder(path
                         + "/" + "test_sham_"+millis+".3gp",  grabber1.getImageWidth(), grabber1.getImageHeight(),2);
                   recorder.setVideoCodec(avcodec.AV_CODEC_ID_MPEG4);
                   recorder.setFormat("3gp");
                   recorder.setFrameRate(frameRate);
                   recorder.setSampleRate(grabber2.getSampleRate());
                   recorder.setVideoBitrate(30);
                   startTime = System.currentTimeMillis();
                   recorder.start();

                   Frame frame1, frame2 = null;

                   while ((frame1 = grabber1.grabFrame()) != null ||

                         (frame2 = grabber2.grabFrame()) != null) {

                       recorder.record(frame1);

                       recorder.record(frame2);

                   }
                   recorder.stop();
                   grabber1.stop();
                   grabber2.stop();
                   System.out.println("Total Time:- " + recorder.getTimestamp());

               } catch (Exception e) {
                   e.printStackTrace();
               }

    I do the above and find out that the video contains no sound. Anyone knows how to deal with the framerate problem...