Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (103)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (13441)

  • Revision db8e731b8d : Add vpx_dsp_common.h file Move the clamp functions to vpx_dsp_common.h file. Cl

    15 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_common.h


     Modify /vp9/common/vp9_loopfilter_filters.c


     Modify /vpx_dsp/vpx_dsp.mk


     Add /vpx_dsp/vpx_dsp_common.h



    Add vpx_dsp_common.h file

    Move the clamp functions to vpx_dsp_common.h file. Clear out the
    dependency of vp9_loopfilter_filters.c on vp9_common.h file.

    Change-Id : I9c4b928bcd7f597106b5aa96354356d3775a3431

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

  • 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