Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (21)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (4032)

  • Disabling WebVTT via ffmpeg NOT working

    28 octobre 2016, par Krasic

    i’m Trying to disable WebVTT via ffmpeg but not working , FFmpeg crash !

    [webvtt @ 0x70c8c60] Exactly one WebVTT stream is needed.

    I have the Last FFmpeg Version , First time i face video with WebVTT
    What’s the best property to use in ffmpeg command line to Keep Video OK without WebVTT & No Crash

    Thank you

  • php exec() for ffmpeg not working

    15 mars 2015, par user3196597

    hai i am using ffmpeg command in php exec() for converting any type of video to flv format the command i’m using i sworking fine in the command prompt but when i run the same commend it returns nothing..actully the output is Array( ) and the the third parameter $result is "1"

    i’ve read similar questions like this on stackoverflow but it’s not helping

    most of the time i noticed that the issue is in path and the safe mode of php

    and i have disabled safe mode using .htaccess the syntax is given below and i am using windows 7 os

    the directory to the ffmpeg application is c :\ffmpeg\bin\ffmpeg

    the full script and output is given below :

    the ffmpeg command :

      ffmpeg -i c:\xampp\htdocs\video\original\robot.mp4 -c:v libx264 -ar 44100 -crf 17 c:\xampp\htdocs\video\vids\robot.flv

    the php script :

    echo "starting ffmpeg...<br />";

    echo exec("ffmpeg -i c:\xampp\htdocs\video\original\robot.mp4 -c:v libx264 -ar 44100 -crf 17 c:\xampp\htdocs\video\vids\robot.flv",$out,$r);
    var_dump($out);
    echo $r."<br />";
    echo "done...<br />";
    ?>

    the htaccess for switching off the safe mode :

    php_value safe_mode "0"

    the output :

    starting ffmpeg...
    array(0) { } 1
    done...
  • How to load/dump a raw video data into AvFrame structure pointer by using ffmpeg api function

    4 octobre 2016, par Harikrishna

    I want to write an application for encoding raw (yuv) video file data by using ffmpeg api functions instead of using a command.

    So for this, I need to use avcodec_encode_video2 function to encode raw video data and before calling this function all required configurations and video data should be fill on the AVCodecContext and AvFrame structure pointers.

    Can anyone guide me that how can I load this raw video data on AvFrame by using ffmpeg api function ?

    Thank you in advance.