Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (52)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5961)

  • Anomalie #2537 : Redirections incorrectes avec Firefox > 5

    17 février 2012, par marcimat -

    Le problème était autre, du à un expire sur HTML dans ma configuration d’Apache. Pas toujours une bonne idée donc. ExpiresByType text/html "modified plus 1 week"

  • how to install ffmpeg on localhost

    25 mars 2014, par Paul Ledger

    There is a lot of topics on this but after hours of reading i am still getting no where.
    I have found a lot of issues wit this.

    1. people have given links to files that no longer exist
    2. the help people have given refers to files that aren't included with the download

    This is the nearest i have found

    link

    I followed this exactly, after finding a different version of the file broken link

    version I found version available at sourceforge which isn't very helpful.

    Steps as decribed :

    1. unzip
    2. copy ffmpeg.exe somewhere and remember the path for later use
    3. move php_ffmpeg.dll to php extension dir (usually c :\xampp\php\ext)
    4. move all other files to Windows\System32 (except COPYING.GPLv3.txt,
      readme.txt)
    5. add extension=php_ffmpeg.dll to php.ini (usually
      c :\xampp\php\php.ini)
    6. restart apache with fingers crossed questions/answers
      http://www.apachefriends.org/f/viewtopic.php?f=16&t=41913

    But when I restart apache I get the error :

    The program can't because avcodec-51.dll is missing

    AND

    PHP startup : Unable to load dynamic libary php_ffmpeg.dll can't be found

    The php_ffmpeg file is in the apache extention folder and has been declared in the php.ini file. I don't really change many settings in my php.ini file so I just put iy at the top of the extentions, if this is the problem please let me know.

    extension=php_ffmpeg.dll <---first extention added
    extension=php_bz2.dll <---- this was allready there

    If anybody knows an easy way to install this on a localhost I would really appropriate and if I'm having this much trouble on localhost should I bother trying to get this working on my lunix server.

    (I am using xampp on windows and my lunix server is hosted through 1and1 - not my first choice but its for a friends site)

  • Converting .mp4 to .webm with FFMPEG

    24 septembre 2012, par DAVYM

    Any chance someone can help me make this a 2 or 3 pass command :

    Using "FFmpeg Win64 Static build by Kyle Schwarz, compiled on : Sep 19 2012 16:31:43" in the Command Prompt of Windows7(x64). I am a newbie to FFMPEG and trying to convert videos for my website from .mp4 to .webm (videos edited and mixed in AdobePremiereProCS6 where then encoded into .mp4 from .mts Canon HXG10 recordings). Original video file is 1080p quality.

    c :\ff/ffmpeg -i c :\ff/xxx.mp4 -codec:v libvpx -quality good -cpu-used
    0 -b:v 7000k -qmin 10 -qmax 42 -maxrate 500k -bufsize 1500k -threads 8
    -vf scale=-1:1080 -codec:a libvorbis -b:a 192k -f webm c :\ff/xxx.webm