Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (55)

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

  • phpvideotoolkit class errors on xampp installed on windows server 2008

    6 mars 2016, par Sourabh Swarnkar

    find i m trying to convert sequence of images into a video. and for that i canme to know about the ffmpeg class.

    the only wrapper class that i found is phpvideotoolkit but i m not able to work with it.

    i installed phpvideotoolkit on xampp on my windows 2008 server . but it is throwing alor of errors

    This example shows you how to extract a specific frame from a movie.


    Notice: Undefined property: PHPVideoToolkit::$_tmb_directory in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 869

    Notice: Undefined offset: 0 in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 877
    PHPVideoToolkit Error: Execute error. Output for file "C:\xampp\htdocs\phpvideo\examples\working\to-be-processed\MOV00007.3gp" was not found. No images were generated.

    Notice: Undefined property: PHPVideoToolkit::$_tmb_directory in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 869

    Notice: Undefined offset: 0 in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 877
    PHPVideoToolkit Error: Execute error. Output for file "C:\xampp\htdocs\phpvideo\examples\working\to-be-processed\Video000.3gp" was not found. No images were generated.

    Notice: Undefined property: PHPVideoToolkit::$_tmb_directory in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 869

    Notice: Undefined offset: 0 in C:\xampp\htdocs\phpvideo\phpvideotoolkit.php5.php on line 877
    PHPVideoToolkit Error: Execute error. Output for file "C:\xampp\htdocs\phpvideo\examples\working\to-be-processed\cat.mpeg" was not found. No images were generated.

    example

    PHPVideoToolkit Error: Execute error. Output for file "C:\xampp\htdocs\phpvideo\examples\working\tmp\1336156630-4fa421d69357d\tmp_%d.jpg" was not found. Please check server write permissions and/or available codecs compiled with FFmpeg. You can check the encode decode availability by inspecting the output array from PHPVideoToolkit::getFFmpegInfo().

    i m trying to make it work since last many hours but no luck

    Also, for this code :

    $srcFile = "test-mpeg.mpg";
    $ffmpegObj = new ffmpeg_movie($srcFile);

    i am gettign error that it cant file the file. i believe its something to do with permissions but i m not able to figure out

    fpoen , fwrite , file_put_contents all are working fine without any permissions problems.

    can anyone please guide me in the write direction. what do i need to do to make this phpvideotoolkit work

  • Building ffmpeg for Windows with MSYS and MinGW

    27 février 2014, par Tech Jerk

    I am trying to build ffmpeg for windows (Xp - SP2) as given here.

    ./configure -–extra-cflags=”-mno-cygwin -mms-bitfields” -–extra-ldflags=”-Wl, -add-stdcall-alias” -–enable-memalign-hack -–enable-shared -–disable-static -–target-os=mingw32

    The above command is placed in a myconfig file as instructed and when i run ./myconfig, the following error is displayed :

    Broken Shell detected. Trying alternatives.
    Trying Shell bash
    Unknown option "-–extra-cflags=-mno-cygwin".

    As suggested in the link i tried various options but still i was not able to succeed.

    My environment is Win XP with :

    • MinGW-5.1.6,
    • bash-2.05b-MSYS,
    • MSYS-1.0.10,
    • ffmpeg-0.5

    EDIT :

    After certain changes in the above command by referring howto i was able to successfully run the make command and i found the following DLL's in their respective directory

    • ffmpeg\libavcodec\avcodec-51.dll
    • ffmpeg\libavformat\avformat-51.dll
    • ffmpeg\libavutil\avutil-49.dll

    But i didn't see any ffmpeg\ffmpeg.exe file :(

    What could have gone wrong ?

  • How to correctly install ffmpeg on windows XP ?

    11 avril 2012, par pipen

    I'm working on C++ project on Windows which involve FFmpeg library.
    The problem is that I can't include ffmpeg library to my project. I can't even run any of ffmpeg tutorials or examples. I'm always getting errors like the following :

    tutorial01.c:22:28: ffmpeg/avcodec.h: No such file or directory
    tutorial01.c:23:29: ffmpeg/avformat.h: No such file or directory

    and lots of errors like :

    tutorial01.c:33: error: `iFrame' undeclared (first use in this function)

    I found the tutorial with this instructions :

    //gcc -o tutorial01 tutorial01.c -lavformat -lavcodec -lz
    //to build (assuming libavformat and libavcodec are correctly installed
    //your system).

    After further searching I found out that I should get a static build library version from here :
    http://ffmpeg.zeranoe.com/builds/
    Then I installed this library following these instructions :

    1. Get the latest build from the arrozcru autobuilds page
    2. Unzip the folder into C :/Program Files/ffmpeg
    3. Add C :/Program Files/ffmpeg/bin to your system’s PATH environment variable

    But I still have compilation errors of the same kind.
    So, it seems it was not correct installation.

    What should I do to connect ffmpeg library to my project on Windows ?