Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (79)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14571)

  • How to build ffmpeg.js via provided Unix code in Cygwin ?

    30 juin 2020, par rusty grad

    I am trying to build ffmpeg.js and add it to my program in windows. Docker does not work on my version of windows. The creator provided how to build it in Unix on his github page as follows :

    


    sudo apt-get update
sudo apt-get install -y git python build-essential automake libtool pkg-config
cd ~
git clone https://github.com/emscripten-core/emsdk.git && cd emsdk
./emsdk install latest
./emsdk activate latest
source emsdk_env.sh
cd ~
git clone https://github.com/Kagami/ffmpeg.js.git --recurse-submodules && cd ffmpeg.js
make


    


    How do I execute this command in Cygwin, or is there an easier way to incorporate FFMPEG or a competitor into a simple javascript client side operation ? I just need to run audio concatenation, which i confirmed works in cmd with FFMPEG :

    


    ffmpeg -i "concat:input1.mp3|input2.mp3|input3.mp3" -acodec copy output.mp3


    


  • How to build ffmpeg with vo-amrwbenc library ?

    28 septembre 2017, par Vicky

    I have downloaded ffmpeg using homebrew and want to add amr-wb encoder support to it,

    DEA.L. amr_nb               AMR-NB (Adaptive Multi-Rate NarrowBand) (decoders: amrnb amr_nb_at libopencore_amrnb ) (encoders: libopencore_amrnb )
    D.A.L. amr_wb               AMR-WB (Adaptive Multi-Rate WideBand) (decoders: amrwb libopencore_amrwb )

    I downloaded vo-amrbenc following the instruction here but don’t understand where should I explicitly configure the build with —enable-libopencore-amrwb ?
    (https://ffmpeg.org/ffmpeg-codecs.html#Encoders)

    A dumb question is that, I didn’t find ./configure file under /usr/local/Cellar/ directory. I am really not an engineer and not familiar with the build and compile thing so any guidance would be really appreciated !

  • FFmpeg 0.6 fails to build on ubuntu 16.04

    18 août 2016, par Andreas Geo

    I am trying to build ffmpeg 0.6 for a project I have. I am using Ubuntu 16.04 and when I try to build it I get the following error :

    In file included from libavcodec/mpegvideo.h:32:0,
                 from libavcodec/vaapi_internal.h:30,
                 from libavcodec/vaapi_mpeg4.c:23:
    libavcodec/get_bits.h: In function ‘skip_bits’:
    libavcodec/get_bits.h:387:17: warning: variable ‘re_cache’ set but not used [-Wunused-but-set-variable]
          OPEN_READER(re, s)
                      ^
    libavcodec/get_bits.h:135:13: note: in definition of macro ‘OPEN_READER’
        int name##_cache= 0;\
            ^
    libavcodec/vaapi_mpeg4.c: In function ‘vaapi_mpeg4_start_frame’:
    libavcodec/vaapi_mpeg4.c:89:73: error: implicit declaration of function ‘ff_h263_get_gob_height’ [-Werror=implicit-function-declaration]
    pic_param->num_macroblocks_in_gob           = s->mb_width * ff_h263_get
                                                               ^
    cc1: some warnings being treated as errors
    common.mak:40: recipe for target 'libavcodec/vaapi_mpeg4.o' failed
    make: *** [libavcodec/vaapi_mpeg4.o] Error 1

    I faced a similar error with ffserver.o file but i downloaded these files here and it fixed it :

    sudo apt-get -y install autoconf automake build-essential libass-dev libfreetype6-dev \
    libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev \
    libxcb-xfixes0-dev pkg-config texinfo zlib1g-dev

    I believe its something similar. Anybody has any ideas ??
    Thank you.