Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (24)

  • 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 (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • 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 (2928)

  • ffmpeg Frames to mp4 (Windows)

    8 juillet 2015, par Somax

    I am trying to combine my frames to a video now for like an hour and I have huge problems with ffmpeg. It keeps on telling me that the directory doesnt exist and i have no idea how to make it right...

    ffmpeg is in C :/ffmpeg
    the frames are in C/ffmpeg/render
    they are named : output_0001.png to output_0150.png

    I want to have 24 Frames per secound.
    what do i have to do in the cmd ?

    i tryed like "ffmpeg -r 30 -i c :/ffmpeg/render/output_%24.png video.mp4"

    What am i doing wrong ?

  • How to run script on Windows to get the files from the current directory ?

    8 juillet 2015, par pcroland

    For example I have directory on the Desktop called "encode". It contains a video file and a script. And I want that the script get the files from the folder where the script is.

    for %%a in ("*.mkv") do C:\encode\ffmpeg.exe -i "%%a" -c:a ac3 -b:a 192k "encode\%%~na.ac3"
    pause

    How should I do that ?

  • Trying to use FFMPEG in C using Codeblocks IDE under Windows 8.1

    31 octobre 2013, par obelix

    I have been trying to use FFMPEG in C using Codeblocks IDE under Windows 8.1.
    I've done the linking stuff required in order to make my code compile but i get the following error :

    C :\Users\user\Desktop\MScProject\FFmpegTest2\main.c|82|error : 'CODEC_TYPE_VIDEO' undeclared (first use in this function)|

    The source i use is the one from the following tutorial
    http://dranger.com/ffmpeg/tutorial01.c

    (original link : http://dranger.com/ffmpeg/tutorial01.html)

    Any ideas ??
    Thanks in advance !!
    (btw the same thing happens when i am trying to compile the program in ubuntu)