Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (98)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10518)

  • compression android video trimmer ffmpeg Exoplayer2 [closed]

    6 mars 2024, par andrew cummins

    I'm trying to compress the video trimmed android video

    


    I have some android code from github that I've been working on. The code is a video trimmer in enter image description hereAndroid. However I'm trying to compress the video after the video is trimmed. Here's the source code

    


    https://github.com/a914-gowtham/android-video-trimmer

    


    I was able to modify the timeline that's generated with a set duration minimum similar to a whatsapp status, with a set max at 10 sec and max 90 seconds

    


    // TrimType.MIN_MAX_DURATION TrimVideo.activity(videoUri) .setTrimType(TrimType.MIN_MAX_DURATION) .setMinToMax(10, 90)  //seconds .start(this,startForResult);

    


    Now all is is working fine but I'm trying to compress the file after the video is trimmed and add an overlay.

    


    Any ideas would be helpful

    


  • Build ffmpeg for android in smaller size with specific features

    13 juillet 2021, par Anas Ansari

    I am using this command to trim out segments of a video in android app using ffmpeg

    


    -ss startFrom -i inputVideo-f segment-segment_time durationOfEachSegment -reset_timestamps 1 outputPath

    


    For this I am using this library https://github.com/tanersener/ffmpeg-kit/tree/development/android

    


    But it has increased my app size a lot

    


    I already tried deleting x86 lib and it indeed decreased my app from 60 mb to 34 mb , but i know still it can be decreased to a much extent

    


    I want to know how to build ffmpeg library with enough features to fullfil my needs and which libraries i need to include in my build

    


  • configure : Add a SONAME entry for the android target

    29 octobre 2015, par Luca Barbato
    configure : Add a SONAME entry for the android target
    

    In order to load libraries in Android they need to be unversioned.
    The android target section was derived from the BSD ones, and they
    that simply drop the SONAME

    Android M requires to have a SONAME entry but unversioned.

    • [DBH] configure