Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (70)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6955)

  • android ffmpeg command line

    8 avril 2014, par user3509984

    i am new android develop.i need to change video color like vintage ,sepia etc .i google many hours at last i found FFMPEG to achieve tat.i had command line for ffmpeg to convert video color ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /sdcard/videokit/out.mp4

    i need to know how to compile tat in android. pls provide some tutorial to achieve tat.

    i found one link tat command will work..but it give oly trai version...
    tat link is
    http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html

    pls provide some tutorial to compile tat command in ffmpeg
    (sorry for my english)
    thanks in advance

  • Cut last n seconds from a video in linux command line [duplicate]

    13 juillet 2016, par J.Adler

    I wonder if there is some way to cut the last N seconds of video using the command line in Linux . If not, I could use a script as well.

  • 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