Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (101)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12019)

  • avfilter/tonemap_vaapi : set va parameters filters and numbers

    30 juin 2020, par Fei Wang
    avfilter/tonemap_vaapi : set va parameters filters and numbers
    

    This can fill VAProcPipelineParameterBuffer correctly and make the
    pipeline works.

    Reviewed-by : Soft Works <softworkz@hotmail.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavfilter/vf_tonemap_vaapi.c
  • ffmpeg : deprecate passing numbers to -vsync

    4 décembre 2021, par Anton Khirnov
    ffmpeg : deprecate passing numbers to -vsync
    

    There is never a reason to do this, using symbolic names is always
    preferred.

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg_opt.c
  • The FFmpeg just show the number form the input text (no characters , just numbers) error=13, Permission denied

    14 avril 2021, par gejivi2011

    I was trying to use FFmpeg to create a video form gif and audio, on Android 10, doesn't work&#xA;The code is working fine on android 9 and below, and not work 10 and above&#xA;the Cmd, as I mentioned it is work so good on android 9 and below

    &#xA;

     String[] cmd = new String[24];&#xA;    cmd[0] = "-i";&#xA;    cmd[1] = audio.getPath();&#xA;    cmd[2] = "-ignore_loop";&#xA;    cmd[3] = "0";&#xA;    cmd[4] = "-i";&#xA;    cmd[5] = image_path;&#xA;    cmd[6] = "-vf";&#xA;    cmd[7] = "scale=trunc(iw/2)*2:trunc(ih/2)*2";&#xA;    cmd[8] = "-filter:v";&#xA;    cmd[9] = ayat_drawer &#x2B; qara_draw;&#xA;    cmd[10] = "-vcodec";&#xA;    cmd[11] = "libx264";&#xA;    cmd[12] = "-pix_fmt";&#xA;    cmd[13] = "yuv420p";&#xA;    cmd[14] = "-r";&#xA;    cmd[15] = "25";&#xA;    cmd[16] = "-preset";&#xA;    cmd[17] = "ultrafast";&#xA;    cmd[18] = "-c:a";&#xA;    cmd[19] = "aac";&#xA;    cmd[20] = "-b:a";&#xA;    cmd[21] = "128k";&#xA;    cmd[22] = "-shortest";&#xA;    cmd[23] = outputLocation.getPath();&#xA;

    &#xA;

    The Java code :

    &#xA;

     FFmpeg mFFmpeg = FFmpeg.getInstance(context);&#xA;        try {&#xA;            mFFmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {&#xA;                @Override&#xA;                public void onProgress(String message) {&#xA;                    super.onProgress(message);&#xA;                    callback.onProgress(message);&#xA;                }&#xA;&#xA;                @Override&#xA;                public void onSuccess(String message) {&#xA;                    super.onSuccess(message);&#xA;                    Utils.refreshGallery(outputLocation.getPath(), context);&#xA;                    callback.onSuccess(outputLocation, "video");&#xA;                }&#xA;&#xA;                @Override&#xA;                public void onFailure(String message) {&#xA;                    super.onFailure(message);&#xA;                    if (outputLocation.exists()) {&#xA;                        outputLocation.delete();&#xA;                    }&#xA;                    callback.onFailure(new IOException(message));&#xA;                }&#xA;&#xA;                @Override&#xA;                public void onStart() {&#xA;                    Log.d("TAG", "<ffmpeg>Started command : mFFmpeg " &#x2B; java.util.Arrays.toString(cmd));&#xA;                }&#xA;&#xA;                @Override&#xA;                public void onFinish() {&#xA;                    Log.d("TAG", "<ffmpeg>Finished command : mFFmpeg " &#x2B; java.util.Arrays.toString(cmd));&#xA;                    super.onFinish();&#xA;                    callback.onFinish();&#xA;                }&#xA;            });&#xA;        } catch (FFmpegCommandAlreadyRunningException e) {&#xA;            Log.e("MAS" , e.getMessage());&#xA;            e.printStackTrace();&#xA;        }&#xA;</ffmpeg></ffmpeg>

    &#xA;

    I think that because FFmpeg using Asynctask and it is deprecated

    &#xA;