Recherche avancée

Médias (91)

Autres articles (110)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9732)

  • FFMPEG running in Command Line but not PHP

    17 avril 2013, par Freeman

    I am using ffmpeg build for windows to make video thumbnails . The command works well in command line but not from PHP exec method. am using PHP 5.2.11

    Here is the command.

    "E:/Documents and Settings/x/WINDOWS/ffmpeg" -itsoffset -4 -v "E:/Program Files/Apache Software Foundation/Apache2.2/htdocs/bs/files/videogal/c08c3d20eeb9083ed033577bd154cba6.flv" -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320x240 "E:/Program Files/Apache Software Foundation/Apache2.2/htdocs/bs/files/gallery/8ff43b72b932d2a34e7a6733672ad4d6.jpg" 2>&1

    Can somebody help. I checked the permissions they seem fine. GD is installed.

    The error msg is 'E:/Documents' is not recognized as an internal or external command, operable program or batch file

    Am using forward slashes in my paths except when escaping double quotes

    The PHP function

    function ExtractThumb($in, $out)
    {$path=dbconf::FFMPEG_PATH;
       $thumb_stdout;
       $errors;
       $retval = 0;
    echo $in;
       // Delete the file if it already exists
       if (file_exists($out)) { unlink($out); }

       // Use ffmpeg to generate a thumbnail from the movie
       $cmd = "$path -itsoffset -4 -i $in -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320x240 $out 2>&1";
      echo $cmd;

      exec($cmd, $thumb_stdout, $retval);

       // Queue up the error for processing
       if ($retval != 0) { $errors[] = "FFMPEG thumbnail generation failed"; }

       if (!empty($thumb_stdout))
       {
           foreach ($thumb_stdout as $line)
           {
               echo $line . "\n";
           }
       }

       if (!empty($errors))
       {
           foreach ($errors as $error)
           {
               echo $error . "\n";
           }
       }
    }

    funny enough if I run without the $in and $out absolute path this is what I get

    Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: --extra-cflags=-fno-common --enable-memalign-hack --enable-pthreads --enable-libmp3lame --enable-libxvid --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libfaac --enable-libgsm --enable-libx264 --enable-libschroedinger --enable-avisynth --enable-swscale --enable-gpl libavutil 49.12. 0 / 49.12. 0 libavcodec 52.10. 0 / 52.10. 0 libavformat 52.23. 1 / 52.23. 1 libavdevice 52. 1. 0 / 52. 1. 0 libswscale 0. 6. 1 / 0. 6. 1 built on Jan 13 2009 02:57:09, gcc: 4.2.4 822ae86a93810dade2843e822390d723.flv: no such file or directory
  • avcodec/loco : Check for end of input in the first line

    25 septembre 2019, par Michael Niedermayer
    avcodec/loco : Check for end of input in the first line
    

    Fixes : Timeout (85sec -> 0.1sec)
    Fixes : 17634/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LOCO_fuzzer-5666410809786368

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/loco.c
  • How to make Fringe Font by using ffmpeg using command line CLI in windows ?

    21 juin 2015, par Ehtesham Shami

    I have a code of ffmpeg of command line. First I have a input image of letter A and then I am using my sample code on that image and getting another output image with different style of letter A.

    I want to make a border on that output letter A.
    I can’t be attached the photos. I have pasted that code sample.

    Please tell me what is the modification is required in that code sample.

    Code Sample :

    ffmpeg -y -i back.jpg -filter_complex "drawtext=fontfile=/Windows/Fonts/meiryo.ttc:text=A:fontcolor=red:x=100:y=100:fontsize=200" output.jpg