Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (10995)

  • avcodec/mediacodec_wrapper : blacklist more software decoders

    6 mars 2018, par Stefan _
    avcodec/mediacodec_wrapper : blacklist more software decoders
    

    Additionally blacklist ffmpeg, Samsung and Qualcomm
    software implementations offered through MediaCodec.

    Signed-off-by : Aman Gupta <aman@tmm1.net>
    Signed-off-by : Matthieu Bouron <matthieu.bouron@gmail.com>

    • [DH] libavcodec/mediacodec_wrapper.c
  • FFmpeg exit value = 4

    13 mai 2013, par Yuliya Tarasenko

    I try to run ffmpeg command on android devices. On some of them the code below works excellent and the video is created. But on some(e.g. motorola xoom) the exit value is 4. And while debugging on samsung galaxy s 2.3.3 it frozes up on process.waitFor() ;
    Could anyone help me please ? I can't understand what is wrong.

    public void execFfmpeg(){
       try {
           File resultFile = new File(mContext.getFilesDir() + "/ffmpeg");
           String[] command = null;
           command = new String[] {
               resultFile.getAbsolutePath(),
               "-shortest",
               "-i",
               audioPath,
               "-loop",
               "1",
               "-i",
               imagePath, "-acodec", "ac3", "-ab", "128k", "-vcodec",
               "mpeg4", videoFileName };


           if(command != null){
               Process process = Runtime.getRuntime().exec(command);
               process.waitFor();
               dumpStream(process.getInputStream());
               dumpStream(process.getErrorStream());
               mLogger.error("" + process.exitValue());

               if(process.exitValue() == 0){
               }
               }
           }
       } catch (IOException e) {
           e.printStackTrace();
       } catch (InterruptedException e) {
           e.printStackTrace();
       }
    }
  • avformat/avi : Added EVC codec tag to the list of supported codec_id-codec_tag pairs...

    18 avril 2024, par Dawid Kozinski
    avformat/avi : Added EVC codec tag to the list of supported codec_id-codec_tag pairs for AVI muxer
    

    Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>

    • [DH] libavformat/riff.c