Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9752)

  • avcodec/nvenc : include nvEncodeAPI v7 SDK header

    27 août 2016, par Timo Rothenpieler
    avcodec/nvenc : include nvEncodeAPI v7 SDK header
    

    As Nvidia has put the most recent Video Codec SDK behind a double
    registration wall, of which one needs manual approval of a lenghty
    application, bundling this header saves everyone trying to use NVENC
    from that headache.

    The header is still MIT licensed and thus fine to bundle with ffmpeg.

    Not bundling this header would get ffmpeg stuck at SDK v6, which is
    still freely available, holding back future development of the NVENC
    encoder.

    • [DH] compat/nvenc/nvEncodeAPI.h
    • [DH] configure
    • [DH] libavcodec/nvenc.h
    • [DH] tests/ref/fate/source
  • Encoding 25mp video

    18 août 2016, par Yuval.Sightec

    I have a 25MP uncompressed video file of 100 frames.

    I tried to encode it with ffmpeg and h264 encoder into a .mp4 file, but the encoding got stuck around the 10th frame.
    This is the script :

    avconv -y -i input.avi -c:v libx264 -preset medium -b:v 5000K -pass 1 -c:a libfdk_aac -b:a 5000K -f mp4 /dev/null && \
    avconv -i input.avi -c:v libx264 -preset medium -b:v 5000K -pass 2 -c:a libfdk_aac -b:a 5000K output.mp4

    I am running it on a jetson TK1 with nvidia gpu, is there any way to use an accelarating encoding in order to make the encoding possible ?

    Please, if you can, give me a sampler script of something that might work.
    Right now, I dont care how much time the encoding take, as long as it will work.

    Thank you in advance ! :)

  • Choose CUDA version for ffmpeg encoding

    8 février 2023, par A GV

    I have multiple CUDA versions installed and I need all of them, so I can’t unistall any. The problem is when I try to encode with the nvenc_h264 encoder, it doesn’t work because it says that there are multiple version of CUDA.

    


    I’m trying to choose the CUDA version, but I don’t find any parameter in ffmpeg documentation to do so.

    


    Does anyone know how to choose the CUDA version ?

    


    I’m working with Linux 22 and the latest ffmpeg version with the NVIDIA libraries.