Recherche avancée

Médias (91)

Autres articles (26)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4910)

  • mp4Parser : How to create a video file with background audio from an mp3 file

    30 mai 2015, par Manu Antony

    I am trying create an android app which merges a video and audio file using mp4Parser. I succeeded when I merge two mp4 file into a single file that displays the video of the first one and plays the audio of the second file.

    But I couldn’t use an mp3 file as the audio source.

    The below code returns exception when I try to create Movie object with an mp3 file. The same code works fine with m4a and mp4 files.

    Movie audio;
       try {
           String audioFileName    =   Environment.getExternalStorageDirectory().toString()+"/music.mp3";
           audio = new MovieCreator().build(audioFileName);
       } catch (IOException e) {
           e.printStackTrace();
           return false;
       } catch (NullPointerException e) {
           e.printStackTrace();
           return false;
       }

    Is it possible to create Movie object from an mp3 file ?

    Anyone please help me on this

  • Combine an image into audio file and make a video file in android programmatically

    20 mars 2015, par jagdish

    I read the tutorial of ffmpeg libray to combine the image into audio file.but is more complex and getting error environment value is null.I googled a lot but didn’t found any solution.

    Is there any way in android we can merge an image in audio file and make a video file.

    Thanks in advance....

  • Model give bad result when train with .mp3 file and test with .wav file [closed]

    21 juillet 2021, par Quý Nguyễn Công

    I trained CNN model with mfcc extracted from .mp3 file and it give good result but when input is .mp3 file. But when input is .wav file, model give bad result. How can I solve this problem. Thank you