Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (51)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (8073)

  • Ubuntu 12.04 upgrade php 5.4 missing php5-ffmpeg

    1er juillet 2013, par Lughino

    I updated php to version 5.4 but now I can not install the package php5-ffmpeg because it gives me this error :
    php5-ffmpeg : Depends : phpapi-20090626

    also if I try to write php-v gives me this warning :

    PHP Warning: PHP Startup: Unable to load dynamic library
    '/usr/lib/php5/20100525/ffmpeg.so' - / usr/lib/php5/20100525/ffmpeg.so:
    can not open shared object file: No such file or directory in Unknown on line 0
    5.4.17RC1 PHP (cli) (built: Jun 22 2013 19:27:26)
    Copyright (c) 1997-2013 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies

    Some solution ?

  • Argument list too long error - ndk r8e

    2 juillet 2013, par Aditya Kumar Praharaj

    While compiling my ffmpeg library on Android , I get this "Argument list too long" error . It comes as soon as the ndk-build starts showing "libffmpeg.so" on the screen . Using Cygwin and ndk-r8e . I have tried this solution but to reach nowhere . Can somebody please tell me what is the error ?

  • ffmpeg settings or alternatives to ffmpeg on raspberry pi for video streaming

    14 octobre 2016, par andrei

    I have a Raspberry Pi (model B) running raspbian wheezy on a 16gb SD card. I also have a 32gb flash storage attached on the usb. I’m trying to stream a video (h264 encoded mp4 file 1280x720) over the ethernet from that flash storage.
    I’m using ffmpeg+ffserver. Here is ffserver.conf (relevant parts) :

    ...
    MaxBandwidth 10000
    <feed>
    ...
    FileMaxSize 100M
    ACL allow 127.0.0.1
    </feed>
    ...
    <stream>
    Feed feed1.ffm
    Format flv
    VideoSize 288x176 #made small just for testing
    NoAudio
    </stream>
    ....

    I start the ffserver, then call ffmpeg with this command :

    ffmpeg -re -an -i /mnt/u32/main.mp4 -r 25 -bit_rate 300k http://localhost:8090/feed1.ffm

    And I’m getting fps 3-5 at most. Naturally when I try to view the stream on another computer it’s very choppy and virtually unusable.

    Am I missing some settings ? Or perhaps there is another streaming solution that leverages the GPU instead of just the CPU as ffmpeg does ? I’m even open to suggestions about other boards (e.g. a pandaboard ? or clustering several RPi’s ?) Also, I’m flexible about the output format.