Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (88)

  • 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 ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11674)

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

    


  • avcodec/libvpxenc : add -min-gf-interval

    14 septembre 2022, par James Zern
    avcodec/libvpxenc : add -min-gf-interval
    

    this maps to the vpxenc argument with the same name and the
    VP9E_SET_MIN_GF_INTERVAL codec control

    Signed-off-by : James Zern <jzern@google.com>
    Reviewed-by : Vignesh Venkatasubramanian <vigneshv@google.com>

    • [DH] doc/encoders.texi
    • [DH] libavcodec/libvpxenc.c
    • [DH] libavcodec/version.h
  • FFmpeg av_hwdevice_ctx_create returns ENOMEM

    4 mars 2021, par lnogueir

    I am trying to perform h264 video encoding on a GPU using the ffmpeg's vaapi library.

    &#xA;

    I have been following this example from ffmpeg Github repo.

    &#xA;

    It fails for me here :

    &#xA;

    AVBufferRef* vaapi_encoder;&#xA;int err = av_hwdevice_ctx_create(&amp;vaapi_encoder, AV_HWDEVICE_TYPE_VAAPI,&#xA;                                 NULL, NULL, 0);&#xA;

    &#xA;

    This returns -12, which maps to ENOMEM (out of memory) error, but that doesn't make sense to me because I have plenty of memory.

    &#xA;

    For reference, this is my output after running 'vainfo' :

    &#xA;

    libva info: VA-API version 1.7.0&#xA;libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so&#xA;libva info: Found init function __vaDriverInit_1_7&#xA;libva info: va_openDriver() returns 0&#xA;vainfo: VA-API version: 1.7 (libva 2.6.0)&#xA;vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 20.1.1 ()&#xA;vainfo: Supported profile and entrypoints&#xA;      VAProfileMPEG2Simple            : VAEntrypointVLD&#xA;      VAProfileMPEG2Main              : VAEntrypointVLD&#xA;      VAProfileH264Main               : VAEntrypointVLD&#xA;      VAProfileH264Main               : VAEntrypointEncSliceLP&#xA;      VAProfileH264High               : VAEntrypointVLD&#xA;      VAProfileH264High               : VAEntrypointEncSliceLP&#xA;      VAProfileJPEGBaseline           : VAEntrypointVLD&#xA;      VAProfileJPEGBaseline           : VAEntrypointEncPicture&#xA;      VAProfileH264ConstrainedBaseline: VAEntrypointVLD&#xA;      VAProfileH264ConstrainedBaseline: VAEntrypointEncSliceLP&#xA;      VAProfileVP8Version0_3          : VAEntrypointVLD&#xA;      VAProfileHEVCMain               : VAEntrypointVLD&#xA;      VAProfileHEVCMain10             : VAEntrypointVLD&#xA;      VAProfileVP9Profile0            : VAEntrypointVLD&#xA;      VAProfileVP9Profile2            : VAEntrypointVLD&#xA;

    &#xA;

    Thanks !

    &#xA;