Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (29)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6200)

  • rtmp : Add support for adobe authentication

    30 décembre 2012, par Martin Storsjö

    rtmp : Add support for adobe authentication

  • 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

  • Windows Batch Script For loop

    14 avril 2013, par Dobbo1989

    I am new to batch scripts, I am trying to figure out how to create a script that will take all video files in a folder videos*.* and then use ffmpeg on each one and output the files to converted*.mp4 where the filenames are the same.

    However I cant figure out how to get the for loop working so that I can extract the name and extension type of file I am processing.

    for %%f IN (videos\*.*) DO (convert.bat %%f)

    convert.bat

    ffmpeg.exe -i %1 -f mp4 converted\%~n.mp4

    I have tried both with and without double quotes however it wont recognise the file.