
Recherche avancée
Autres articles (60)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (2973)
-
hwcontext_d3d11 : Fix crash with valid adapter but no device
27 mars 2018, par Mark Thompsonhwcontext_d3d11 : Fix crash with valid adapter but no device
This crash was introduced by 8bbf2dacbfb4ead1535dea411035994f507f517d,
which could incorrectly overwrite the failure result from creating the
device.Fixes ticket #7108.
Reviewed-by : wm4 <nfxjfg@googlemail.com>
-
Unable to load FFProbe driver for FFmpeg
12 septembre 2021, par Kapil RopalekarHi i am trying to install php-ffmpeg.
Can someone guide me or correct me in my steps.


- 

-
I installed the composer on windows and then traversed to my folder i had created to run
install ffmpeg
cmd -
After running this command a
composer.json
,composer.lock
file were created along with a vendor folder. -
Later installed the Shared
FFMpeg
build for 64bit from here




http://ffmpeg.zeranoe.com/builds/











and form this folder copied the bin folder to my directory to set the
ffmpeg
andffprobe
path duringcreate()
like this


$ffmpeg = \FFMpeg\FFMpeg::create([
 'ffmpeg.binaries' => '/vendor/bin/ffmpeg.exe',
 'ffprobe.binaries' => '/vendor/bin/ffprobe.exe' 
]);




Currently i am getting this error which says :



"Fatal error: Uncaught exception 'Alchemy\BinaryDriver\Exception\ExecutableNotFoundException' with message 'Executable not found, proposed : /vendor/bin/' in D:\xampp\htdocs\health\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\AbstractBinary.php:160 Stack trace: #0 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php(48): Alchemy\BinaryDriver\AbstractBinary::load('/vendor/bin/', NULL, Object(Alchemy\BinaryDriver\Configuration)) #1 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php(207): FFMpeg\Driver\FFProbeDriver::create(Array, NULL) #2 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFMpeg.php(117): FFMpeg\FFProbe::create(Array, NULL, NULL) #3 D:\xampp\htdocs\health\ff.php(6): FFMpeg\FFMpeg::create(Array) #4 {main} Next exception 'FFMpeg\Exception\ExecutableNotFoundException' with message 'Unable to load FFProbe' in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php:50 Stack trace: #0 D:\xampp\htdocs\he in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php on line 50".




So what could i have done wrong or am i missing any steps. Can someone point me to the right direction.


-
-
lavc/vaapi_encode : Don't return error if the underlying driver doesn't support B...
6 février 2018, par Haihao Xianglavc/vaapi_encode : Don't return error if the underlying driver doesn't support B frames
The underlying driver need not support B frames - since they are enabled
by default for some codecs, it is better to disable them rather than
returning an error in this case. This makes the default settings usable
for low-power encoding on Intel platforms.Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>
Signed-off-by : Mark Thompson <sw@jkqxz.net>