Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (74)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11278)

  • libavfilter/x86/vf_convolution : fix sobel swap issue on WIN64

    14 novembre 2022, par Wang, Bin
    libavfilter/x86/vf_convolution : fix sobel swap issue on WIN64
    

    Reviewed by : James Almer <jamrial@gmail.com>
    Signed-off-by : Wang, Bin <bin.wang@intel.com>

    • [DH] libavfilter/x86/vf_convolution.asm
  • lavc/vvc_ps : Correct NoOutputBeforeRecoveryFlag of IDR

    11 mars 2024, par Fei Wang
    lavc/vvc_ps : Correct NoOutputBeforeRecoveryFlag of IDR
    

    The NoOutputBeforeRecoveryFlag of an IDR frame should be set to 1 as
    spec says in 8.1.1.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vvc/vvc_ps.c
  • Cannot run program "/data/user/0/com.athkar.musliem/files/ffmpeg" : error=2, No such file or directory

    3 avril 2021, par gejivi2011

    I am trying to make a video with an audio and single image, but have the error that on the title, I am using android studio with FFmpeg :&#xA;I need to make that video with just one image and one mp3 file

    &#xA;

    The error was :

    &#xA;

    Exception while trying to run: [Ljava.lang.String;@b6e12b4&#xA;java.io.IOException: Cannot run program "/data/user/0/com.athkar.musliem/files/ffmpeg": &#xA;error=2, No such file or directory&#xA;&#xA;Caused by: java.io.IOException: error=2, No such file or directory&#xA;

    &#xA;

    1- this code to get the save directory

    &#xA;

        String root = Environment.getExternalStorageDirectory().toString();&#xA;    myDir = new File(root);&#xA;

    &#xA;

    2- The image uri :

    &#xA;

     imageUri = Uri.parse("android.resource://com.athkar.musliem/drawable/" &#x2B; R.drawable.test_image);&#xA;

    &#xA;

    3- to select mp3 file :

    &#xA;

        public void openMp3Selector() {&#xA;    Intent intent;&#xA;    intent = new Intent();&#xA;    intent.setAction(Intent.ACTION_GET_CONTENT);&#xA;    intent.setType("audio/*");&#xA;    startActivityForResult(Intent.createChooser(intent, "Select mp3"), REQ_CODE_PICK_SOUNDFILE);&#xA;}&#xA;&#xA; @Override&#xA;public void onActivityResult(int requestCode, int resultCode, Intent data) {&#xA;    super.onActivityResult(requestCode, resultCode, data);&#xA;    if (requestCode == REQ_CODE_PICK_SOUNDFILE &amp;&amp; resultCode == Activity.RESULT_OK) {&#xA;        if ((data != null) &amp;&amp; (data.getData() != null)) {&#xA;            audioFileUri = data.getData();&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    4- finally FFmpeg code :

    &#xA;

      fFmpeg = FFmpeg.getInstance(VideoMakerActivity.this);&#xA;            String[] strArr = new String[]{"-y", "-r", imageUri.getPath(), "-i", imageUri.getPath(), "-vcodec", "libx264", "-r", "2", "-pix_fmt", "yuv420p", "-preset", "ultrafast", audioFileUri.getPath()};&#xA;            try {&#xA;                fFmpeg.execute(strArr, new ExecuteBinaryResponseHandler() {&#xA;                    @Override&#xA;                    public void onSuccess(String message) {&#xA;                        super.onSuccess(message);&#xA;                        Log.e("MAS", "onSuccess");&#xA;                    }&#xA;&#xA;                    @Override&#xA;                    public void onProgress(String message) {&#xA;                        super.onProgress(message);&#xA;                        Log.e("MAS", "onProgress");&#xA;&#xA;                    }&#xA;&#xA;                    @Override&#xA;                    public void onFailure(String message) {&#xA;                        super.onFailure(message);&#xA;                        Log.e("MAS", "onFailure");&#xA;&#xA;                    }&#xA;&#xA;                    @Override&#xA;                    public void onStart() {&#xA;                        super.onStart();&#xA;                        Log.e("MAS", "onStart");&#xA;&#xA;                    }&#xA;&#xA;                    @Override&#xA;                    public void onFinish() {&#xA;                        super.onFinish();&#xA;                        Log.e("MAS", "onFinish");&#xA;&#xA;                    }&#xA;                });&#xA;            } catch (FFmpegCommandAlreadyRunningException e) {&#xA;                e.printStackTrace();&#xA;            }&#xA;

    &#xA;