Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (15)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (3521)

  • Decode mp4 to raw frames windows c++

    27 septembre 2012, par p.streef

    I'm trying to decode an MP4 file i've created using mp4creator library. I can't find a ffmpeg or libav example that actually works with the libraries, because the code is incompatible with the examples.

    I need a simple way of reading the mp4 file and decoding it into raw audio and video frames. In needs to work on windows too.

    If someone can point me towards a working and compatible ffmpeg/libav library + example source file that could work too.

    If i could get the library version which was used in this tutorial that would work, since this guy seems to be the only one who wrote a decent tutorial on FFMPEG (albeit on some ancient version)
    http://dranger.com/ffmpeg/

    edit :

    In the latest version of ffmpeg i found the example named : filtering_video.c
    using a patch found : http://ffmpeg.org/pipermail/ffmpeg-devel/2012-June/126587.html I have gotten the program to do "something" It looks to be working so I will investigate further.

  • ffmpeg in matlab on windows

    22 octobre 2015, par Maystro

    Is there a way to run ffmpeg commands in matlab on windows.

    I know on Linux we can use the function system(’...’) to run any command but how can I do it on windows ?

    any idea would be appreciated

    Thanks

  • Encode a movie with Unicode filename in Windows using Popen

    15 avril 2013, par Tetsu

    I want to encode a movie through IO.popen by ruby(1.9.3) in windows 7.
    If the file name contains only ascii strings, encoding proceed normally.
    But with unicode filename the script returns "No such file or directory" error.
    Like following code.

    #-*- encoding: utf-8 -*-
    command = "ffmpeg -i ü.rm"
    IO.popen(command){|pipe|
     pipe.each{|line|
       p line
     }
    }

    I couldn't find whether the problem causes by ffmpeg or ruby.
    How can fix this problem ?