Recherche avancée

Médias (39)

Mot : - Tags -/audio

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 (11388)

  • how to make video module with nodejs like facebook did with photos

    31 mai 2017, par aharit

    Just wondering how to start ? The needs :

    With around 10 photos, being able to produce a small video of 5-10sec, with animations for example (transition ?), i want to reproduce the facebook videos process if anybody know about that, which technical stack is the best, modules (ffmpeg, wrapper ffmpeg)(pyhton, nodejs).

    Thx

  • add scale module

    2 mars 2017, par Danter7
    add scale module
  • Asterisk module app_transcoder failed for libavcodec.so (undefined symbol avacodec_init)

    22 août 2016, par Riad

    I am trying to integrate the 3G video gateway with Asterisk(1.4.0).

    When i load the module "app_transcoder.so" (which does the actual video transcoding), then

    asterisk hangs and with "asterisk -vvvvvc" i got

    asterisk : symbol lookup error : /usr/lib/asterisk/modules/app_transcoder.so : undefined symbol : avcodec_init

    Showing the dependencies of app_transcoder.so by "ldd /usr/lib/asterisk/modules/app_transcoder.so" gives :

       linux-vdso.so.1 =>  (0x00007fff851ff000)
       libavcodec.so.54 => /usr/local/lib/libavcodec.so.54 (0x00007f8604ec3000)
       libswscale.so.2 => /usr/local/lib/libswscale.so.2 (0x00007f8604c6e000)
       libc.so.6 => /lib64/libc.so.6 (0x00007f86048d9000)
       libavutil.so.52 => /usr/local/lib/libavutil.so.52 (0x00007f86046a7000)
       libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f860448a000)
       libx264.so.142 => /usr/local/lib/libx264.so.142 (0x00007f86040d1000)
       libgsm.so.1 => /usr/lib/libgsm.so.1 (0x00007f8603ec6000)
       libm.so.6 => /lib64/libm.so.6 (0x00007f8603c42000)
       libz.so.1 => /lib64/libz.so.1 (0x00007f8603a2b000)
       /lib64/ld-linux-x86-64.so.2 (0x0000003b14200000)
       libdl.so.2 => /lib64/libdl.so.2 (0x00007f8603827000)

    "avcodec_init" comes from libavcodec.so file but it has no symbols as from the commands :

    nm -a /usr/local/lib/libavcodec.so.54

    gives :

    nm : /usr/local/lib/libavcodec.so.54 : no symbols

    i am following the instructions from Medooze

    CentOS-6.4

    ffmpeg-1.2.6

    asterisk-1.4.0

    x264- 0.142x

    ptlib-2.6.7

    mpeg4ip-1.6.1

    Any advice is appreciated.