Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (49)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

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

  • Cannot install Libtool library used but `LIBTOOL' is undefined trying to install ffmpeg

    23 décembre 2014, par user1503606

    I am trying to install ffmpeg on centos following this tutorial.

    http://ffmpeg.org/trac/ffmpeg/wiki/CentosCompilationGuide

    but when i run.

    cd ~/ffmpeg_sources
    git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
    cd fdk-aac
    autoreconf -fiv
    ./configure --prefix="$HOME/ffmpeg_build" --disable-shared
    make
    make install
    make distclean

    I get the following error.

    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1
    [root@worldnewstranslate fdk-aac]# make install
    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1

    I cannot get it to work for the life of me any help please why i maybe getting these errors.

    Thanks

  • FFmpeg concat in android

    13 avril 2018, par fvn

    I have trying to concat multiple videos (mp4 or mov)on Android Studio using FFMPEG. I have managed to get vidoes in an arrayList and their path like this :

    private List<string> getSelectedVideos(Intent data) {

           List<string> result = new ArrayList&lt;>();

           ClipData clipData = data.getClipData();
           if(clipData != null) {
               for(int i=0;icode></string></string>

    I have looked online on how to concat vidoes using FFMPEG https://trac.ffmpeg.org/wiki/Concatenate

    However I’m not sure how to do it using Android studio. Any help would be much appreciated.

  • ffmpeg on windows mobile with C#

    19 septembre 2017, par Riv

    I need to work with FFmpeg for windows mobile with C#, in fact I want build player for .m4b,.m4a files. I know that the TCPMP is exist, but I want to make my own.
    So I want to use .Net, and I have some questions :

    1. If I use some C# FFmpeg wrappers, for example TaoFramework, will it work on windows mobile(in case if I use FFmpeg lib compiled for windows mobile) ?

    2. In FFmpeg wiki I found this

    Once you have compiled, or downloaded,
    the Windows DLLs for FFmpeg, you can
    use .Net Platform Invoke (PI) to
    access the functions in the libraries
    libavformat and libavcodec.
    Link to source...

    But I don’t know how can I use it ? I tried to make it with dll that I had downloaded from http://ffmpeg.arrozcru.org/autobuilds/. Maybe I need to compile ffmpeg by myself for this option ?

    And last question is - what is libavcodec ? When I downloaded shared build, I got avcodec-52.dll, avfilter-1.dll, ffmpeg.exe, but I coudn’t find libavcodec.dll, or it’s just alias ?