Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (60)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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 2011

    MediaSPIP 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, par

    Le 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 Thompson
    hwcontext_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>

    • [DH] libavutil/hwcontext_d3d11va.c
  • Unable to load FFProbe driver for FFmpeg

    12 septembre 2021, par Kapil Ropalekar

    Hi i am trying to install php-ffmpeg.
    Can someone guide me or correct me in my steps.

    &#xA;&#xA;

      &#xA;
    1. I installed the composer on windows and then traversed to my folder i had created to run install ffmpeg cmd

    2. &#xA;

    3. After running this command a composer.json, composer.lock file were created along with a vendor folder.

    4. &#xA;

    5. Later installed the Shared FFMpeg build for 64bit from here

      &#xA;&#xA;

      &#xA;

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

      &#xA;

    6. &#xA;

    &#xA;&#xA;

    and form this folder copied the bin folder to my directory to set the ffmpeg and ffprobe path during create() like this

    &#xA;&#xA;

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

    &#xA;&#xA;

    Currently i am getting this error which says :

    &#xA;&#xA;

    "Fatal error: Uncaught exception &#x27;Alchemy\BinaryDriver\Exception\ExecutableNotFoundException&#x27; with message &#x27;Executable not found, proposed : /vendor/bin/&#x27; 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(&#x27;/vendor/bin/&#x27;, 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 &#x27;FFMpeg\Exception\ExecutableNotFoundException&#x27; with message &#x27;Unable to load FFProbe&#x27; 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".&#xA;

    &#xA;&#xA;

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

    &#xA;

  • lavc/vaapi_encode : Don't return error if the underlying driver doesn't support B...

    6 février 2018, par Haihao Xiang
    lavc/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>

    • [DH] libavcodec/vaapi_encode.c