Recherche avancée

Médias (91)

Autres articles (75)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • 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

Sur d’autres sites (12180)

  • To convert audio file from .wav to .mp3 using ffmpeg flutter

    19 septembre 2022, par Akhil

    I needed to convert an audio file from .wav to .mp3, i have used this package for converting.But its returning with code 1.

    


     FFmpegKit.execute('-i $url output.mp3').then((session) async {
                                                        final returnCode = await session.getReturnCode();

                                                        if (ReturnCode.isSuccess(returnCode)) {


                                                          // SUCCESS

                                                        } else if (ReturnCode.isCancel(returnCode)) {

                                                          // CANCEL

                                                        } else {


                                                          // ERROR

                                                        }
                                                      })


    


    conversion no

    


  • Stop JavaVC playback warning

    5 novembre 2017, par Chaoslab

    Receiving a stream of command line warnings as video plays - deprecated pixel format used, make sure you did set range correctly

    Question :
    How can I stop the warnings from happening or being displayed ?

    Example code below (just frame grabbing, not timed playback).

    import java.io.File;

    import org.bytedeco.javacv.CanvasFrame;
    import org.bytedeco.javacv.FFmpegFrameGrabber;
    import org.bytedeco.javacv.Frame;

    public class TestPlay implements Runnable {
    private static String      video_loc = null;
    private static CanvasFrame canvas    = new CanvasFrame("Test JavaCV player");

    public static void main(String[] args) { new Thread(new TestPlay(args[0])).start(); }

    public void run() { play_video(video_loc); }

    public TestPlay(String loc) { video_loc = loc; }

    public static final void play_video(String vid_loc) {
     try {
      File               file      = new File(vid_loc);
      FFmpegFrameGrabber ffmpeg_fg = new FFmpegFrameGrabber(file.getAbsolutePath());
      Frame              frm;
      ffmpeg_fg.setAudioChannels(0);
      ffmpeg_fg.start();
      for(;;)
       if((frm = ffmpeg_fg.grab()) != null) canvas.showImage(frm);
       else {
        ffmpeg_fg.setTimestamp(0);
        break;
       }
      ffmpeg_fg.stop();
     } catch(Exception ex) { ex("play_video vid_loc:" + vid_loc, ex); }
    }

    public static final void ex(String txt, Exception ex)   {
     System.out.println("EXCEPTION: " + txt + " stack..."); ex.printStackTrace(System.out); }
    }

    Looking into these possible solutions...

    • Set the correct pixel format before decoding.
    • Turning off FFMpeg warning logging.

    Will update with a fix when found.

  • How to reduce the app size after use of FFMPEG in flutter ?

    10 octobre 2022, par Sugan Pandurengan

    I'm current using ffmpeg_kit_flutter 4.5.1-LTS after that my app bundle size increase by 150mb and final bundle size is 250 mb.

    


    Is there any way to reduce the app bundle size with FFMPEG.