Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9646)

  • video compression error in android

    27 avril 2017, par Arpan Sharma

    I am using ffmpeg for video compression in android.I an following this link
    But i always get exit code 1.I am trying to get video from VIDEO CAPTURE intent inside a fragment.
    This is my code

    final Clip clip_in = new Clip(videoPath);
           File fileTmp = activity.getCacheDir();
           File fileAppRoot = new File(activity.getApplicationInfo().dataDir);

           final Clip clip_out = new Clip(videoPath);
           //put flags in clip
           clip_out.videoFps = "30";
           clip_out.width = 480;
           clip_out.height = 320;
           clip_out.videoCodec = "libx264";
           clip_out.audioCodec = "copy";

           try {
               FfmpegController fc = new FfmpegController(getContext(), fileTmp);
               fc.processVideo(clip_in, clip_out, false, new ShellUtils.ShellCallback() {

                   @Override
                   public void shellOut(String shellLine) {
                       System.out.println("MIX> " + shellLine);
                   }

                   @Override
                   public void processComplete(int exitValue) {
                       if (exitValue != 0) {
    //                        System.err.println("concat non-zero exit: " + exitValue);
                           Log.d("ffmpeg", "Compilation error. FFmpeg failed");
                           Toast.makeText(activity, "result: ffmpeg failed", Toast.LENGTH_LONG).show();
                       } else {
                           if (new File("/storage/emulated/0/Developer/result2.mp4").exists()) {
                               Log.d("ffmpeg", "Success file:" + "/storage/emulated/0/Developer/result2.mp4");
                           }
                       }
                   }
               });

           } catch (Exception e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
           }

    Any help will be appreciated.

  • How to convert a video to mask with ffmpeg ?

    8 avril 2019, par Zedd W

    I want to synthesize videos with a pre-designed template.

    template structure

    The final result is similar to the video below

    result : This video is synthesized by me using moviepy(a Python module for video editing). But it takes too long to be used in production.

    So, I need to overlay these videos into a single video.

    Current problems

    • How to convert a video to mask by ffmpeg ?
    • How to synthesize these videos to a single video by ffmpeg ?
  • how to Add mp3 file in to video file using ffmpeg

    20 mai 2020, par Rahane Akoliya

    i want to Add mp3 file in to video file using ffmpeg,i refer many link but not find answer.anyone can help me ?

    



                    final String[] command= ("-i "+ Constant.getTempVideo(VideoEditorActivity.this, false) +" -i " +Constant.Song_Path+ " -c copy -map 0:0 -map 0:1 -map 1:0 -shortest " + videoOutputPath).split(" ");


    



    i try this command but give error.