Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

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

Autres articles (83)

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

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

  • Trim Audio Flutter ( ffmpeg_kit_flutter Package) Not Working

    23 septembre 2024, par Sharath Appesh

    Audio Trim is not working

    


    Flutter Version : 3.0.2
Dart : 2.17.3

    


    Package used :
ffmpeg_kit_flutter : ^4.5.1

    


    Input file path :
"/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"

    


    Output file path :
"/data/user/0/com.goonetech.v1.gofinal/app_flutter/output.mp3"

    


    &#xA;double start=2, &#xA;double end=5;&#xA;&#xA;String path="/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"&#xA;&#xA;&#xA;    static Future<string> cutAudio(String path, double start, double end) async {&#xA;    final Directory dir = await getApplicationDocumentsDirectory();&#xA;    final outPath = "${dir.path}/output.mp3";&#xA;    double start = 1;&#xA;    double end = 5;&#xA;&#xA;    try &#xA;{&#xA;      await File(outPath).delete();&#xA;    } catch (e) {&#xA;      print("Delete Error");&#xA;    }&#xA;&#xA;    var cmd =&#xA;        "-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac 2 -b:a 96k -acodec libmp3lame $outPath";&#xA;&#xA;    FFmpegKit.executeAsync(cmd, (session) async {&#xA;      final returnCode = await session.getReturnCode();&#xA;      print("returnCode $returnCode");&#xA;    });&#xA;&#xA;    return outPath;&#xA;  }&#xA;&#xA;</string>

    &#xA;

    The output is :&#xA;returnCode 1

    &#xA;

    The output path does not have the file (File not found exception)

    &#xA;

  • Concatenate audio files using ffmpeg

    4 juin 2021, par user13962029

    I am trying to concatenate ac3 and aac using ffmpeg.

    &#xA;

    ffprobe of jpn_op.m4a :

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;jpn_op.m4a&#x27;:&#xA;Metadata:&#xA;major_brand     : M4A &#xA;minor_version   : 512&#xA;compatible_brands: M4A isomiso2&#xA;encoder         : Lavf58.76.100&#xA;Duration: 00:01:17.28, start: 0.000000, bitrate: 224 kb/s&#xA;Stream #0:0(jpn): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, stereo, fltp, 224 kb/s (default)&#xA;Metadata:&#xA;  handler_name    : SoundHandler&#xA;  vendor_id       : [0][0][0][0]&#xA;Side data:&#xA;  audio service type: main&#xA;

    &#xA;

    ffprobe of eng_nop.m4a

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;eng_nop.m4a&#x27;:&#xA;Metadata:&#xA;major_brand     : M4A &#xA;minor_version   : 512&#xA;compatible_brands: M4A isomiso2&#xA;encoder         : Lavf58.76.100&#xA;Duration: 00:22:09.26, start: 0.023000, bitrate: 41 kb/s&#xA;Stream #0:0(und): Audio: aac (HE-AAC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 39 kb/s (default)&#xA;Metadata:&#xA;  handler_name    : SoundHandler&#xA;  vendor_id       : [0][0][0][0]&#xA;

    &#xA;

    I tried this :

    &#xA;

    ffmpeg -f concat -i concat_files.txt -c copy final.m4a -y&#xA;

    &#xA;

    concat_files.txt contains :

    &#xA;

    file &#x27;jpn_op.m4a&#x27;&#xA;file &#x27;eng_nop.m4a&#x27;&#xA;

    &#xA;

    ffprobe of final.m4a

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;final.m4a&#x27;:&#xA;Metadata:&#xA;major_brand     : M4A &#xA;minor_version   : 512&#xA;compatible_brands: M4A isomiso2&#xA;encoder         : Lavf58.76.100&#xA;Duration: 00:23:26.50, start: 0.000000, bitrate: 51 kb/s&#xA;Stream #0:0(jpn): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, stereo, fltp, 224 kb/s (default)&#xA;Metadata:&#xA;  handler_name    : SoundHandler&#xA;  vendor_id       : [0][0][0][0]&#xA;Side data:&#xA;  audio service type: main&#xA;

    &#xA;

    But, there is silent in place of 2nd file in final.m4a

    &#xA;

  • FFMPEG ratio and SAR to 1 [closed]

    21 novembre 2024, par Aurelien Stride

    I have a video of 1280x720px with a SAR = 540:401.

    &#xA;

    My purpose is, with FFMPEG, to set SAR to 1, and get a final resolution of 1280*534.

    &#xA;