Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (10)

  • 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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (3062)

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