Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (105)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Merge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’

    22 juin 2014, par Michael Niedermayer
    Merge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’
    

    * commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’ :
    dsputil : Split audio operations off into a separate context

    Conflicts :
    configure
    libavcodec/takdec.c
    libavcodec/x86/Makefile
    libavcodec/x86/dsputil.asm
    libavcodec/x86/dsputil_init.c
    libavcodec/x86/dsputil_mmx.c
    libavcodec/x86/dsputil_x86.h

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/ac3enc_template.c
    • [DH] libavcodec/acelp_pitch_delay.c
    • [DH] libavcodec/acelp_pitch_delay.h
    • [DH] libavcodec/arm/Makefile
    • [DH] libavcodec/arm/audiodsp_arm.h
    • [DH] libavcodec/arm/audiodsp_init_arm.c
    • [DH] libavcodec/arm/audiodsp_init_neon.c
    • [DH] libavcodec/arm/audiodsp_neon.S
    • [DH] libavcodec/arm/dsputil_init_neon.c
    • [DH] libavcodec/arm/dsputil_neon.S
    • [DH] libavcodec/audiodsp.c
    • [DH] libavcodec/audiodsp.h
    • [DH] libavcodec/cook.c
    • [DH] libavcodec/dsputil.c
    • [DH] libavcodec/dsputil.h
    • [DH] libavcodec/g729dec.c
    • [DH] libavcodec/g729postfilter.c
    • [DH] libavcodec/g729postfilter.h
    • [DH] libavcodec/ppc/Makefile
    • [DH] libavcodec/ppc/audiodsp.c
    • [DH] libavcodec/ppc/dsputil_altivec.h
    • [DH] libavcodec/ppc/dsputil_ppc.c
    • [DH] libavcodec/ra144.c
    • [DH] libavcodec/ra144.h
    • [DH] libavcodec/ra144dec.c
    • [DH] libavcodec/ra144enc.c
    • [DH] libavcodec/takdec.c
    • [DH] libavcodec/x86/Makefile
    • [DH] libavcodec/x86/audiodsp.asm
    • [DH] libavcodec/x86/audiodsp.h
    • [DH] libavcodec/x86/audiodsp_init.c
    • [DH] libavcodec/x86/dsputil.asm
    • [DH] libavcodec/x86/dsputil_init.c
    • [DH] libavcodec/x86/dsputil_mmx.c
    • [DH] libavcodec/x86/dsputil_x86.h
  • Installing ffmpeg in Ubuntu by using Chef fails by error of yasm version

    23 décembre 2014, par ironsand

    I want to install ffmpeg in Ubuntu14.04 by using chef.

    This is my config files for it.

    Berksfile

    source "https://api.berkshelf.com"
    cookbook 'apt'
    cookbook 'ffmpeg'

    nodes/ubuntu.json

    {
       "run_list": [
           "apt",
           "ffmpeg"
       ]
    }

    Then run knife solo cook ubuntu. It ends up with a error :

    STDOUT: Found no assembler
    Minimum version is yasm-1.2.0

    I understand the error. probably if I install yasm-1.2.0 manually, then the error will be fixed.

    But I want to install only by using chef. What can I do to solve the problem ?

  • Flutter video_compress and then ffmpeg trim video to 30s fails with endless logs

    7 mars 2021, par Charles Bass

    I am trying to make a simple app in Flutter. A user can either take or pick a video and then upload it. However, I wanted to compress the video for storage purposes on firebase storage, and also trim it to only get the first 30 seconds.

    &#xA;

    I am facing a very puzzling problem. I am able to compress the video, but with the resultant file, FFmpeg fails to trim it and I get endless logs which result in me having to stop the app and re-run. Alternatively, I am able to trim the video, but with the resultant file, I am unable to compress it getting the error :  Failed to open file &#x27;/data/user/0/live.roots.roots/app_flutter/TRIMMED.mp4&#x27;. (No such file or directory) PlatformException(error, java.io.IOException: Failed to instantiate extractor., null, java.lang.RuntimeException: java.io.IOException: Failed to instantiate extractor.

    &#xA;

    This is my code below :

    &#xA;

    &#xD;&#xA;
    &#xD;&#xA;
    //! function that controls file compression and trimming&#xA;static Future<file> compressFile(File file) async {&#xA;    print(&#x27;[COMPRESSING FILE]&#x27;);&#xA;&#xA;    String mimeStr = lookupMimeType(file.path);&#xA;    var fileType = mimeStr.split(&#x27;/&#x27;);&#xA;&#xA;    if (fileType.contains("image")) {&#xA;      print(&#x27;[COMPRESSING FILE] - file is image&#x27;);&#xA;      String tempPath = (await getTemporaryDirectory()).path;&#xA;      String targetPath = &#x27;$tempPath/${DateTime.now().toIso8601String()}.jpg&#x27;;&#xA;      return await compressImageAndGetFile(file, targetPath);&#xA;    } else {&#xA;      print(&#x27;[COMPRESSING FILE] - file is video&#x27;);&#xA;&#xA;      final compressedVideoFile = await compressVideoAndGetFile(file);&#xA;      print(&#x27;[VIDEO FILE COMPRESSED]&#x27;);&#xA;      return await trimVideoGetFile(compressedVideoFile);&#xA;    }&#xA;  }&#xA;  &#xA;  &#xA;//! function to compress video&#xA;static Future<file> compressVideoAndGetFile(File file) async {&#xA;    print(&#x27;[COMPRESSING VIDEO]&#x27;);&#xA;&#xA;    var result = await VideoCompress.compressVideo(&#xA;      file.absolute.path,&#xA;      quality: VideoQuality.DefaultQuality,&#xA;      deleteOrigin: true,&#xA;    );&#xA;&#xA;    print(&#x27;[COMPRESSED VIDEO TO]: ${result.file.path}&#x27;);&#xA;&#xA;    return result.file;&#xA;  }&#xA;  &#xA;//! function to trim video&#xA;static Future<file> trimVideoGetFile(File file) async {&#xA;    print(&#x27;[TRIMMING VIDEO]&#x27;);&#xA;&#xA;    Directory appDocumentDir = await getApplicationDocumentsDirectory();&#xA;    String rawDocumentPath = appDocumentDir.path;&#xA;    String outputPath = rawDocumentPath &#x2B; "/TRIMMED.mp4";&#xA;&#xA;    final newFile = File(outputPath);&#xA;&#xA;    if (await newFile.exists()) {&#xA;      await newFile.delete();&#xA;    }&#xA;&#xA;    _flutterFFmpeg&#xA;        .execute(&#xA;            "-ss 00:00:00 -i ${file.path} -to 00:00:30 -c copy $outputPath")&#xA;        .then((rt) async {&#xA;      print(&#x27;[TRIMMED VIDEO RESULT] : $rt&#x27;);&#xA;      if (rt == -1) {&#xA;        throw Exception("Something went wrong when trimming the video");&#xA;      }&#xA;    });&#xA;&#xA;    return File(outputPath);&#xA;  }</file></file></file>

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;

    Thank you in advance

    &#xA;