Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (10)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4434)

  • avcodec/dvenc : Fix undefined left shift of negative numbers

    29 septembre 2020, par Andreas Rheinhardt
    avcodec/dvenc : Fix undefined left shift of negative numbers
    

    The earlier code was based on the assumption that AVFrame.linesize can
    not be negative.

    Fixes ticket #8280.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/dvenc.c
  • avcodec/motion_est : Fix invalid left shift of negative numbers

    26 mars 2021, par Andreas Rheinhardt
    avcodec/motion_est : Fix invalid left shift of negative numbers
    

    Affected many FATE-tests.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/motion_est.c
    • [DH] libavcodec/motion_est_template.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;