
Recherche avancée
Autres articles (45)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (5805)
-
I can't install ffmpegs (dependencies) - error with doxygen [mac 10.12.6 Sierra]
12 septembre 2022, par Lo-Fi JunkyIt installed about 70% of the dependencies it needed to get ffmpegs going, but it got stuck at installing 'doxygen'.


This is the error I got :


==> Installing dependencies for ffmpeg: doxygen, little-cms2, openjpeg, opus, rust, libgit2, cargo-c, rav1e, flac, libsndfile, libsamplerate, rubberband, sdl2, swig, llvm, snappy, speex, srt, leptonica, libb2, lz4, libarchive, tesseract, theora, x264, x265, xvid, docbook, boost, source-highlight, asciidoc, docbook-xsl, libyaml, ruby, asciidoctor, gnu-getopt, xmlto, libsodium, zeromq and zimg
==> Installing ffmpeg dependency: doxygen
==> cmake ..
==> make
Last 15 lines from /Users/macbook/Library/Logs/Homebrew/doxygen/02.make:
In file included from /tmp/doxygen-20220723-61533-5m5mdv/doxygen-1.9.4/src/outputlist.h:25:
/tmp/doxygen-20220723-61533-5m5mdv/doxygen-1.9.4/src/searchindex.h:29:10: fatal error: 'variant' file not found
#include <variant>
 ^~~~~~~~~
1 error generated.
make[2]: *** [src/CMakeFiles/doxymain.dir/__/generated_src/code.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/doxymain.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 46%] Linking CXX static library ../lib/libvhdlparser.a
cd /tmp/doxygen-20220723-61533-5m5mdv/doxygen-1.9.4/build/vhdlparser && /usr/local/Cellar/cmake/3.23.2/bin/cmake -P CMakeFiles/vhdlparser.dir/cmake_clean_target.cmake
cd /tmp/doxygen-20220723-61533-5m5mdv/doxygen-1.9.4/build/vhdlparser && /usr/local/Cellar/cmake/3.23.2/bin/cmake -E cmake_link_script CMakeFiles/vhdlparser.dir/link.txt --verbose=1
/usr/bin/ar qc ../lib/libvhdlparser.a CMakeFiles/vhdlparser.dir/CharStream.cc.o CMakeFiles/vhdlparser.dir/ParseException.cc.o CMakeFiles/vhdlparser.dir/Token.cc.o CMakeFiles/vhdlparser.dir/TokenMgrError.cc.o CMakeFiles/vhdlparser.dir/__/generated_src/VhdlParser_adj.cc.o CMakeFiles/vhdlparser.dir/VhdlParserTokenManager.cc.o
/usr/bin/ranlib ../lib/libvhdlparser.a
[ 46%] Built target vhdlparser
make: *** [all] Error 2

Do not report this issue to Homebrew/brew or Homebrew/core!


Error: You are using macOS 10.12.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.
</variant>


Can someone please help me am not sure what it is, that I am supposed to do.


-
php_ffmpeg some error and solutions
26 mars 2018, par sonam SharmaI have successfully installed
php_ffmpeg
in my new project with the help of a guy on stackoverflow.com.
I can do the basic jobs like extracting a frame out of a video
but when I try to convert the video to another format I get this error :Fatal error : Uncaught exception ’Alchemy\BinaryDriver\Exception\ExecutionFailureException’
with message ’ffprobe failed to execute command "C :\ffmpeg\bin\ffprobe.EXE"
"sample3.mp4" "-show_streams" "-print_format" "json"’ in
C :\wamp\www\raidpipe\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php on line 244Alchemy\BinaryDriver\Exception\ExecutionFailureException :
ffprobe failed to execute command "C :\ffmpeg\bin\ffprobe.EXE"
"sample3.mp4" "-show_streams" "-print_format" "json" in
C :\wamp\www\raidpipe\vendor\alchemy\binary-
driver\src\Alchemy\BinaryDriver\ProcessRunner.php on line 100FFMpeg\Exception\RuntimeException :
Unable to probe sample3.mp4 in
C :\wamp\www\raidpipe\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php on line 244I have used this code in my test page :
<?php
require 'vendor/autoload.php';
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('test/sample3.mp4');
$video
->filters()
->resize(new FFMpeg\Coordinate\Dimension(320, 240))
->synchronize();
$video
->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(19))
->save('test/clip/frame123.jpg');
$video
->save(new FFMpeg\Format\Video\X264(), 'export-x264.mp4')
->save(new FFMpeg\Format\Video\WMV(), 'export-wmv.wmv')
->save(new FFMpeg\Format\Video\WebM(), 'export-webm.webm');
?>When I run this code it gives me the frame without any error
require 'vendor/autoload.php';
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('test/sample3.mp4');
$video
->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(19))
->save('test/clip/frame123.jpg');Please suggest me a way to convert the video by using the
php_ffmpeg
i need the video to be converted to some basic formats which can be supported by all the browsers and also please let me know is it a good practice to use exc (execute) in php ??I got the above code from this link
https://github.com/PHP-FFMpeg/PHP-FFMpeg
-
php_ffmpeg some error and sollutions
6 mars 2016, par sonam SharmaHello I have successfully installed
php_ffmpeg
in my new project with the help of a guy on stackoverflow.com.
I can do the basic jobs like extracting a frame out of a video
but when I try to convert the video to another format I get this error :Fatal error : Uncaught exception ’Alchemy\BinaryDriver\Exception\ExecutionFailureException’
with message ’ffprobe failed to execute command "C :\ffmpeg\bin\ffprobe.EXE"
"sample3.mp4" "-show_streams" "-print_format" "json"’ in
C :\wamp\www\raidpipe\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php on line 244Alchemy\BinaryDriver\Exception\ExecutionFailureException :
ffprobe failed to execute command "C :\ffmpeg\bin\ffprobe.EXE"
"sample3.mp4" "-show_streams" "-print_format" "json" in
C :\wamp\www\raidpipe\vendor\alchemy\binary-
driver\src\Alchemy\BinaryDriver\ProcessRunner.php on line 100FFMpeg\Exception\RuntimeException :
Unable to probe sample3.mp4 in
C :\wamp\www\raidpipe\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php on line 244I have used this code in my test page :
<?php
require 'vendor/autoload.php';
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('test/sample3.mp4');
$video
->filters()
->resize(new FFMpeg\Coordinate\Dimension(320, 240))
->synchronize();
$video
->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(19))
->save('test/clip/frame123.jpg');
$video
->save(new FFMpeg\Format\Video\X264(), 'export-x264.mp4')
->save(new FFMpeg\Format\Video\WMV(), 'export-wmv.wmv')
->save(new FFMpeg\Format\Video\WebM(), 'export-webm.webm');
?>When I run this code it gives me the frame without any error
require 'vendor/autoload.php';
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('test/sample3.mp4');
$video
->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(19))
->save('test/clip/frame123.jpg');Please suggest me a way to convert the video by using the
php_ffmpeg
i need the video to be converted to some basic formats which can be supported by all the browsers and also please let me know is it a good practice to use exc (execute) in php ??I got the above code from this link
https://github.com/PHP-FFMpeg/PHP-FFMpeg