Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (35)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (5784)

  • fftools/ffmpeg_dec : eliminate all remaining InputStream uses

    23 janvier 2024, par Anton Khirnov
    fftools/ffmpeg_dec : eliminate all remaining InputStream uses
    

    Previously, the demuxer would register decoder with the scheduler, using
    InputStream as opaque, and pass the scheduling index to the decoder.

    Now the registration is done by the decoder itself, using DecoderPriv as
    opaque, and the scheduling index is returned to demuxer from dec_open().

    decoder_thread() then no longer needs to be accessed from outside of
    ffmpeg_dec and can be made static.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_dec.c
    • [DH] fftools/ffmpeg_demux.c
  • What does A->A and VV->V etc. mean in the `ffmpeg -filters` command output ?

    8 janvier 2024, par Lance

    I am seeing this :

    


    Filters:
  T.. = Timeline support
  .S. = Slice threading
  ..C = Command support
  A = Audio input/output
  V = Video input/output
  N = Dynamic number and/or type of input/output
  | = Source or sink filter
... abench            A->A       Benchmark part of a filtergraph.
..C acompressor       A->A       Audio compressor.
... acontrast         A->A       Simple audio dynamic range compression/expansion filter.
... acopy             A->A       Copy the input audio unchanged to the output.
... acue              A->A       Delay filtering to match a cue.
... acrossfade        AA->A      Cross fade two input audio streams.
...
TSC colormap          VVV->V     Apply custom Color Maps to video stream.
TS. colormatrix       V->V       Convert color matrix.
TS. colorspace        V->V       Convert between colorspaces.
TSC colortemperature  V->V       Adjust color temperature of video.
TSC convolution       V->V       Apply convolution filter.
TS. convolve          VV->V      Convolve first video stream with second video stream.
...


    


    A few questions :

    


      

    1. What does this part of the filters intro mean ?

      


       A = Audio input/output
 V = Video input/output
 N = Dynamic number and/or type of input/output
 | = Source or sink filter


      


    2. 


    3. What does the A->A and VVV->V (and any combination of 1+ A or 1+ V) mean ?

      


    4. 


    5. Where do the N and | show up, I don't see it anywhere...

      


    6. 


    


    I am hoping to convert this CLI data output to JSON, but don't know what those mean.

    


  • Finding project / solution files to build libbluray

    30 novembre 2020, par xcvbnm

    I am trying to build libbluray from http://git.1f0.de/gitweb?p=libbluray.git ;a=summary ;js=1. The description says that it is a "libbluray patched to compiler under Windows with MSVC", but I can't find any vcxproj / sln files in their source code (take, for example, a ZIP file at http://git.1f0.de/gitweb?p=libbluray.git ;a=snapshot ;h=ebde4c9cedb2088eb7c4ee9ef1a15e74b5d17f3a ;sf=zip ;js=1). Without a project or solution file, how do I plug it into MSVC ? Am I missing something here ?