Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (17)

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

  • 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 générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (4899)

  • MPEG Encoding library for WINDOWS PHONE 8 [on hold]

    18 avril 2015, par Ali Jey

    I am developing a Windows phone app that takes pictures to create Time-lapse Videos.
    However I’ve noticed that there aren’t many libraries for Encoding frames into MPEG format for Windows phone platform.

    My question is this :

    1. Is there any library at all to encode FFMPEG videos inside Windows phone apps ?
    2. if not, How can I make one in C# ? (Yes I know it’s going to be hard.)

    Where should I Start from ? (please pay attention that the references that I can make inside windows phone app projects are limited !)

    Thanks in advance for any help.

  • FFMPEG fdk_aac Static Windows Builds

    24 avril 2015, par Benny Chen

    I’m new in FFMPEG. I have download ffmpeg windows build but libfdk_aac is not enabled. Where I can get the ffmpeg build with complete encoder with libfdk enabled ?

  • ffmpeg windows, multiple displays

    2 septembre 2013, par user2739557

    I have a windows 7 setup with extended desktops (ie say two). I would like to capture
    everything on desktop 1 in a separate file and everying on desktop 2 in a separate file.
    At present I use

    ffmpeg -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" test.flv

    which captures everything on both desktops simultaneously. Are there any options one can pass to limit this to say one Desktop ?

    Now solved as follows : use the crop video filter to extract the desktops 1 and 2. Assuming the two displays are 1024x768 then the following seems to work and create two files
    for the left and right displays

    ffmpeg -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" -vf crop=1024x768:0:0 left.flv -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" -vf crop=1024x768:1024:0 right.flv