Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (67)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (9071)

  • Revision 86428 : Un autre type de jointure qui devrait fonctionner : cas simple : ...

    3 décembre 2014, par kent1@… — Log

    Un autre type de jointure qui devrait fonctionner :
    cas simple : $cle_depart dans la table_liee
    Ce cas pourrait exister par exemple si on activait une jointure de recherche sur les articles avec la table spip_evenements du plugin agenda.
    Il suffirait d’ajouter la ligne suivante dans le pipeline "declarer_tables_objets_sql" dans le fichier base/agenda_evenements :
    $tablesspip_articles ?rechercher_jointures ?evenement ? = array(’titre’ => 8, ’descriptif’ => 5, ’lieu’ => 5, ’adresse’ => 3) ;

  • compat/cuda : update cuvid/nvdec headers to Video Codec SDK 8.0.14

    8 mai 2017, par Timo Rothenpieler
    compat/cuda : update cuvid/nvdec headers to Video Codec SDK 8.0.14
    

    This raises the required minimum NVIDIA display driver versions :
    NVIDIA Linux display driver 378.13 or newer
    NVIDIA Windows display driver 378.66 or newer

    • [DH] compat/cuda/dynlink_cuda.h
    • [DH] compat/cuda/dynlink_cuviddec.h
    • [DH] compat/cuda/dynlink_loader.h
    • [DH] compat/cuda/dynlink_nvcuvid.h
  • Multiple files concatenation using ffmpeg by the use of GPU Hardware acceleration

    30 juin 2021, par bubus

    I need to concatenate multiple mp4, h264 encoded files into single one together with speed up filter, using GPU HW acceleration. I am using Debian 10 Buster 64bit, and the card I am using is Nvidia Gainward GTX960.

    


    I have installed CUDA, together with Nvidia driver and configured ffmpeg with the following parameters :

    


    ./configure --enable-nonfree -–enable-cuda-sdk –enable-libnpp --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64`


    


    The problem is, I believe, that GPU is not working at 100%, so the concatenation takes quite a long time.

    


    The command I am using to concatenate files and speeding them up :

    


    ./ffmpeg -c:v h264_cuvid -f concat -i mylist.txt -c:a copy -c:v h264_nvenc -y -filter:v 'setpts='0.0625'*PTS' -an merged.mp4


    


    Output of nvidia-smi while the above command is being executed :

    


    Image.png

    


    ffmpeg version: ffmpeg version N-102801-gb74beba9a9
CUDA version: 11.2
Nvidia driver version: 460.84


    


    I have no idea what else can I do to speed up the concatenation.