Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (62)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6690)

  • 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;

  • Error while building ParaView on ubuntu

    21 février 2014, par user3337492

    I´ve got school project that I have to build ParaView and work with it in parallel.

    I am using this guide : http://paraview.org/Wiki/ParaView:Build_And_Install

    I´ve installed all the required packages and now it is time to "Configure ParaView With CMake".

    When I do this recomended code

    mkdir $HOME/projects/ParaView-bin

    cd $HOME/projects/ParaView-bin

    ccmake $HOME/projects/ParaView3

    the terminal shows this :

    CMake Error : The source "/home/kulis/projects/ParaView3/CMakeLists.txt" does
    not match the source "/home/kulis/projects/ParaView/CMakeLists.txt" used to
    generate cache. Re-run cmake with a different source directory.

    so instead of ParaView3 I use ParaView in code : ccmake $HOME/projects/ParaView

    then its possible to set all the variables and compile. But there comes the real problem. When i want to compile it, the terminal shows this error message :

    ERROR ADD_PARAVIEW_VIEW_MODULE called without VIEW_TYPE or VIEW_XML_GROUP

    CMake Error : The following variables are used in this project, but they are set to NOTFOUND.
    Please set them or make sure they are set and tested correctly in the CMake files :
    /home/kulis/projects/ParaView/VTK/IO/FFMPEG/FFMPEG_INCLUDE_DIR
    used as include directory in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avcodec_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avformat_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avutil_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_swscale_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG

    And I do not really know what to do with it.

    I would very much appreciate your help. Thanks

  • Compile ffmpeg for WinRT with libvpx ?

    7 janvier 2018, par Sean O'Neil

    Following this guide :
    https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    Can anyone tell me if it’s possible to build and include libvpx into this ?