Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

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

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

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

  • how to Add mp3 file in to video file using ffmpeg

    20 mai 2020, par Rahane Akoliya

    i want to Add mp3 file in to video file using ffmpeg,i refer many link but not find answer.anyone can help me ?

    



                    final String[] command= ("-i "+ Constant.getTempVideo(VideoEditorActivity.this, false) +" -i " +Constant.Song_Path+ " -c copy -map 0:0 -map 0:1 -map 1:0 -shortest " + videoOutputPath).split(" ");


    



    i try this command but give error.

    


  • Flutter FFMPEG - Getting the same waveform output image for different audio files

    28 novembre 2020, par mtkguy

    I'm trying to generate waveform images for different audio files but no matter what i do, i keep getting the same waveform image for every audio. The first audio file returns the correct waveform image but subsequent files also return that same image as output. Yes, i already set the overwrite flag to my command but it doesn't change anything. Here's my code.

    


    class RecordController extends GetxController {&#xA;Rx<file> cachedAudioFile = Rx<file>();&#xA;  RxString waveFormImagePath = "".obs;&#xA;&#xA;Future<int> getWaveForm(String url) async {&#xA;    final FlutterFFmpeg _flutterFFmpeg = FlutterFFmpeg();&#xA;    final FlutterFFmpegConfig _flutterFFmpegConfig = FlutterFFmpegConfig();&#xA;    // clear out path for new wave form&#xA;    if (waveFormImagePath.value != "") {&#xA;      File(waveFormImagePath.value).delete();&#xA;    }&#xA;    waveFormImagePath.value = "";&#xA;    Directory appDocumentDir = await getApplicationDocumentsDirectory();&#xA;    String rawDocumentPath = appDocumentDir.path;&#xA;    waveFormImagePath.value = [rawDocumentPath, &#x27;/audioWaveForm.png&#x27;].join();&#xA;&#xA;    cachedAudioFile.value = await DefaultCacheManager().getSingleFile(url);&#xA;    String inputFilePath = cachedAudioFile.value.path;&#xA;    String commandToExecute = [&#xA;      &#x27;-y -i $inputFilePath -filter_complex "compand,aformat=channel_layouts=mono,showwavespic=s=4000x2000:colors=white" -frames:v 1 &#x27;,&#xA;      waveFormImagePath.value&#xA;    ].join();&#xA;    _flutterFFmpeg&#xA;        .execute(commandToExecute)&#xA;        .then((rc) => print("FFmpeg process exited with rc $rc"));&#xA;    int returnCode = await _flutterFFmpegConfig.getLastReturnCode();&#xA;    var output = await _flutterFFmpegConfig.getLastCommandOutput();&#xA;    print(output);&#xA;    print(waveFormImagePath.value);&#xA;&#xA;    return returnCode;&#xA;  }&#xA;}&#xA;</int></file></file>

    &#xA;

    I'm using the Getx package to manage state and as such i can use the waveFormImagePath anywhere in my UI plus it's reactive. So somewhere in my UI i have this

    &#xA;

    FileImage(File(recordController?.waveFormImagePath?.value))&#xA;

    &#xA;

    Any help would be appreciated.

    &#xA;

  • combine Scheduled audio ffmpeg

    5 septembre 2018, par Erfan Esmaeilzadeh

    I am developing a music making application for Android. I need to create a system that can extract MP3s from the user’s music project.

    I can save the name of every file per second of music in a string, as in the following example :

    a.mp3-b.mp3-c.mp3|| d.mp3-e.mp3-f.mp3|| g.mp3-h.mp3-i.mp3

    => final.mp3

    Between "||" is equivalent to one second and the audio within this parameter must be combined. After that, the combinations are put together.

    The most important thing is the timing of each sound. Some sounds must be combined at one time and some sounds at other times.