Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (9614)

  • How to build x265 for Android in Ubuntu

    27 juin 2016, par Omar Faruk

    I want to build x265 for Android in Ubuntu so that I can use this build for ffmepg. I can’t find any document how to build or cross-compile for Android

  • Unable to display output Android - ffmpeg

    31 octobre 2015, par Rahul

    I’m a newbie in android programming and am using https://github.com/WritingMinds/ffmpeg-android-java for my project to use ffmpeg in apps. I’ve followed the instructions as described in http://hiteshsondhi88.github.io/ffmpeg-android-java/ but my output for "-version" as command in the function described in the second link as ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() gives a blank output. What should I add in the onSuccess(String message) or in the onFinish(String message) function ? Thanks.

  • Android FFmpeg wrapper that can run https protocol

    19 février 2019, par Henderson

    I’m trying to deploy ffmpeg command on my android app.

    the command I’m gonna run is like

    ffmpeg -headers "X-Token:SOMETOKEN" -i https://streamthatiwannaget.com/player.m3u8 -acodec copy outputfile.m4a

    I tried libraries from bravobit’s and writingminds’s but the problem was both of them DO NOT support https protocol.

    Seems like openssl is required when compiling ffmpeg.

    But it’s really frustrating to building, writing Android.mk and JNI... so on.

    Is there any ffmpeg-android library that can deal with https protocol ?
    Or any idea helpful for this ? Thank you in advance.