Recherche avancée

Médias (91)

Autres articles (103)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (12239)

  • Looking for a Sales Development Representative (Jobs at Piwik)

    20 mai 2015, par Piwik Core Team — Jobs

    This blog post is a job offer at Piwik PRO for a Sales Development Representative. Please share this job ad if you know anyone who may be interested.

    Job description

    As a sales development rep your job will be to work with our sales team to identify and nurture sales opportunities. You will be one of the initial building blocks of our US operation, especially as we begin to scale it, so there will be plenty of opportunities for advancement within the company.

    Responsibilities

    • Generate new sales opportunities
    • Help to develop and improve sales strategies
    • Set up discussions with senior executives and evaluate their business needs
    • Manage and nurture a pipeline of prospects until a given stage
    • Use marketing & sales CRM tools

    Requirements

    • Desire to learn and succeed in sales
    • 1+ years of related experience
    • Advanced research skills
    • Ability to write professional emails
    • Native English proficiency with excellent verbal communication skills
    • Passion for technology

    Compensation

    Salary (full-time) + performance-based incentives

    Location

    Remote

    About Piwik PRO

    At Piwik and Piwik PRO we develop the leading open source web analytics platform, used by over 1.1M websites worldwide and is currently ranked the 7th most used web analytics tool in the world. Our vision is to build the best open alternative to Google Universal Analytics.

    The Piwik platform collects, stores and processes a lot of information : hundreds of millions of data points each month. We create intuitive, simple and beautiful reports that delight our users.

    Apply online

    To apply for this position, please Apply online here. We look forward to receiving your applications !

  • lavc/snowenc : Expose an option to set the rc_eq expression

    7 août 2020, par Alexander Strasser
    lavc/snowenc : Expose an option to set the rc_eq expression
    

    Snow uses the ratecontrol module, but does not expose a way to set
    the rc_eq expression. The default expression, set in the ratecontrol
    module, will always be used.

    Make it possible to set rc_eq by adding an AVOption to snowenc.

    The option definition is mostly a copy from the mpegvideo common
    options definition of rc_eq (libavcodec/mpegvideo.h), with some
    minor style adjustments to be closer to the other snowenc option
    initializer expressions.

    Signed-off-by : Alexander Strasser <eclipse7@gmx.net>

    • [DH] libavcodec/snowenc.c
  • Derive qsv hwdevice from D3D11VA hwdevice using FFMPEG

    29 mars 2022, par Caio Augusto

    I'm trying to derive a QSV hwcontext from D3D11VA device in order to encode d3d11 frames but I'm getting an error when calling av_hwdevice_ctx_create_derived.

    &#xA;

      buffer_t ctx_buf { av_hwdevice_ctx_alloc(AV_HWDEVICE_TYPE_D3D11VA) };&#xA;&#xA;  auto ctx = (AVD3D11VADeviceContext *)((AVHWDeviceContext *)ctx_buf->data)->hwctx;&#xA;&#xA;  std::fill_n((std::uint8_t *)ctx, sizeof(AVD3D11VADeviceContext), 0);&#xA;&#xA;  auto device = (ID3D11Device *)hwdevice_ctx->data;&#xA;&#xA;  device->AddRef();&#xA;  ctx->device = device;&#xA;&#xA;  ctx->lock_ctx = (void *)1;&#xA;  ctx->lock     = do_nothing;&#xA;  ctx->unlock   = do_nothing;&#xA;&#xA;  auto err = av_hwdevice_ctx_init(ctx_buf.get());&#xA;

    &#xA;

    and then I call

    &#xA;

      av_hwdevice_ctx_create_derived(&amp;derive_hw_device_ctx, AV_HWDEVICE_TYPE_QSV, ctx_buf.get(), 0);&#xA;

    &#xA;

    I'm seeing this in the log :

    &#xA;

    [AVHWDeviceContext @ 000001de119a9b80] Initialize MFX session: API version is 1.35, implementation version is 1.30&#xA;[AVHWDeviceContext @ 000001de119a9b80] Error setting child device handle: -16&#xA;

    &#xA;

    Please let me know if you have any idea how to fix it or a different approach to encode d3d11 frames on QSV encoder.

    &#xA;

    Thank you.

    &#xA;

    OS: windows 10 64bits&#xA;CPU: Intel i5-8400&#xA;Graphics card: Nvidia GT1030 (has no hw encoder)&#xA;

    &#xA;