Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (86)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (13849)

  • Using ffMPEG on Windows with only the DLL's ?

    7 novembre 2012, par Nav

    What I actually want is to store frames of a video into a char array, using ffMPEG.
    Constraint is to use only MSVC. Not allowed to use the Windows building tweak due to maintainability issues.

    So considered using the shared build to accomplish the task. It consists of only DLL's. No lib files, so I tried loading one of the DLL's using HINSTANCE hInstLibrary = LoadLibrary("avcodec-54.dll"); and it works. But I couldn't find the interfaces of this DLL published anywhere. Could anyone help with this ? How do I know which functions of the DLL I can call and what parameters I can pass it so that I can get the video frames ?

  • Windows again

    24 septembre 2013, par Mikko Koppanen — Imagick

    Seems like the new Windows build system is online and Imagick for Windows is now provided here :

    http://windows.php.net/downloads/pecl/releases/imagick/

  • ffmpeg windows and linux version : Operation not permitted on linux

    10 décembre 2012, par user300675

    I run the latest compiled ffmpeg versions from : http://ffmpeg.gusari.org/static/

    This command works as it should on Windows :

    ffmpeg -i "rtmp://myIpAddress/live/video live=1" -c copy dump.flv

    When I run it on Linux (ffmpeg got from http://ffmpeg.gusari.org/static/64bit/)

    ffmpeg -i "rtmp://myIpAddress/live/video live=1" -c copy dump.flv

    I got :

    ffmpeg version N-46124-gb399816 Copyright (c) 2000-2012 the FFmpeg developers
    built on Oct 29 2012 05:22:17 with gcc 4.6 (Debian 4.6.3-1)

    configuration: --prefix=/root/ffmpeg-static/64bit --extra-cflags='-I/root/ffmpeg-static/64bit/include -static' --extra-ldflags='-L/root/ffmpeg-static/64bit/lib -static' --extra-libs='-lxml2 -lexpat -lfreetype' --enable-static --disable-shared --disable-ffserver --disable-doc --enable-bzlib --enable-zlib --enable-postproc --enable-runtime-cpudetect --enable-libx264 --enable-gpl --enable-libtheora --enable-libvorbis --enable-libmp3lame --enable-gray --enable-libass --enable-libfreetype --enable-libopenjpeg --enable-libspeex --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-version3 --enable-libvpx
     libavutil      52.  1.100 / 52.  1.100
     libavcodec     54. 69.100 / 54. 69.100
     libavformat    54. 35.100 / 54. 35.100
     libavdevice    54.  3.100 / 54.  3.100
     libavfilter     3. 20.106 /  3. 20.106
     libswscale      2.  1.101 /  2.  1.101
     libswresample   0. 16.100 /  0. 16.100
     libpostproc    52.  1.100 / 52.  1.100
    [rtmp @ 0x37bde40] Server error:
    rtmp://myIPAddress/live/video live=1: Operation not permitted

    Any idea ?