Recherche avancée

Médias (91)

Autres articles (68)

  • 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

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (8033)

  • merging audio files using FFmpegFrameRecorder

    1er juin 2015, par Sargam Modak

    I have successfully merged(not concatenate) two .aac audio files using ffmpegframerecorder but the output file is like very slow.
    Below is the code i have used.
    Is there anything i can use to speed up the output audio file. Is it related to framerate ?

    FFmpegFrameGrabber frameGrabber =
                   new FFmpegFrameGrabber("storage/sdcard0/Audio/audio.aac");      
           f=new File("/storage/sdcard0/Audio/audnew.aac");
           try {
               f.createNewFile();
           } catch (IOException e2) {
               // TODO Auto-generated catch block
               Log.d("def",e2.getLocalizedMessage());
           }
          FFmpegFrameGrabber grabber1 = new FFmpegFrameGrabber("/storage/sdcard0/Audio/smoke.aac");
           try {
               frameGrabber.start();
               grabber1.start();
           } catch (org.bytedeco.javacv.FrameGrabber.Exception e1) {
               // TODO Auto-generated catch block
               Log.d("here",e1.getLocalizedMessage());
           }
           FFmpegFrameRecorder recorde = new FFmpegFrameRecorder(f, frameGrabber.getAudioChannels());
           try {
               recorde.setAudioCodec(AV_CODEC_ID_AAC);
               Log.d("12","here");
               recorde.setFrameRate(12);
               recorde.start();
               Frame frame1 = new Frame();
               Frame frame2 = new Frame();
               for (int i=0;i<1000000;i++)
               {
                   frame1 = grabber1.grabFrame();
                   frame2 = frameGrabber.grabFrame();
                   if (frame1==null || frame2==null) {
                       Log.d("er","Failed cvQueryFrame");
                       frameGrabber.release();
                       grabber1.release();
                       break;
                   }
                   recorde.record(frame1);
                   recorde.record(frame2);

               }
               recorde.stop();
               grabber1.stop();

           }catch(Exception e){
               Log.d("abc", e.getLocalizedMessage());
           }
  • Error : "No such option : -l" when running yt-dlp

    12 juin 2022, par garson

    I have adapted code from this Stack Overflow answer to try to download a video and use ffmpeg to alter it

    


    yt-dlp    "https://www.youtube.com/watch?v=PtkqwslbLY8" -o  ffmpeg -i in.mp4 -vcodec libx264 -crf 23 -preset fast -profile:v baseline \
-level 3 -refs 6 -vf "scale=640:-1,pad=iw:480:0:(oh-ih)/2,format=yuv420p" \
-acodec copy output.mp4


    


    However, when I run this I'm getting the error :

    


    yt-dlp: error: no such option: -l


    


    Any ideas of how to fix this ?

    


  • Explicit deinitialization of progress listeners.

    14 octobre 2018, par blueimp
    Explicit deinitialization of progress listeners.
    This addresses a memory leak with Microsoft Edge.
    Thanks @butonic for the report, investigation and fix.
    Closes #3508