Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (52)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (5800)

  • Evolution #4595 : [Charte privé] Soulignement des liens

    3 novembre 2020, par nicod _

    Pourquoi pas un petit picto tout simple, toujours le même (une flèche ?), avant ou après les liens de ces blocs là ?
    En utilisant :before avec un SVG en background, avec fill : currentcolor (ou stroke : currentcolor) pour qu’il prenne toujours la couleur du lien, ce serait générique.

    (au passage, je remarque les : en trop après "Titre", sur la première capture)

  • libavutil/hwcontext_qsv : clean padding when upload qsv frames

    23 décembre 2021, par Wenbin Chen
    libavutil/hwcontext_qsv : clean padding when upload qsv frames
    

    Fix #7830
    When we upload a frame that is not padded as MSDK requires, we create a
    new AVFrame to copy data. The frame's padding data is uninitialized so
    it brings run to run problem. For example, If we run the following
    command serveral times we will get different outputs.

    ffmpeg -init_hw_device qsv=qsv:hw -qsv_device /dev/dri/renderD128 \
    - filter_hw_device qsv -f rawvideo -s 192x200 -pix_fmt p010 \
    - i 192x200_P010.yuv -vf "format=nv12,hwupload=extra_hw_frames=16" \
    - c:v hevc_qsv output.265

    According to https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/mediasdk-man.md#encoding-procedures
    "Note : It is the application's responsibility to fill pixels outside
    of crop window when it is smaller than frame to be encoded. Especially
    in cases when crops are not aligned to minimum coding block size (16
    for AVC, 8 for HEVC and VP9)"

    I add a function to fill padding area with border pixel to fix this
    run2run problem, and also move the new AVFrame to global structure
    to reduce redundant allocation operation to increase preformance.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • Remove parts of a video automagically without reencode ?

    21 août 2022, par Sam

    I'm looking for a way to remove automatically the opening and ending parts of a video (credits) without reencode.

    &#xA;

    If you need an example, take Game of Thrones : I'd need a way to automatically remove the GoT opening (with the theme music) and the ending part (with the credits and the HBO logo part).

    &#xA;

    FFmpeg can do that, but the cut has to be manual and happens only at keyframes... which isn't precise enough for me.

    &#xA;

    I thought that maybe there is a tool that allows to scan a video, and remove a part between two input frames (the start of opening frame, the end of opening frame)... etc, same thing for Ending.

    &#xA;

    Thanks for the help !

    &#xA;