Recherche avancée

Médias (91)

Autres articles (93)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (3390)

  • Fastest way to convert video to frames wihout saving the frames locally

    24 février 2020, par Abhik Sarkar

    I want to apply batch prediction on Videos using Pytorch.

    The Problem is I am having many videos to process and don’t want to save additional frames.
    Is there a way I can save ’n frames’ in 1FPS and apply deep learning at the same time ?

    In other words, I am having VIDEODATASET is there any VIDEODATALOADER ?

  • Watermarking chunks od MPEG Dash stream

    5 décembre 2019, par michalSolarz

    Is it possible to apply a drawtext video filter on existing Dash segments ? I’ve managed to merge segments with init MP4 and apply that filter on it but I’ve no idea how and if it is possible to recreate MP4 segment similar to input one, fragmented and with only media data as input one ?

  • FFmpeg : cannot use AMD Gpu

    1er juillet 2019, par Berque Cemilian

    I’m on windows.
    When I am using the benchmark code ffmpeg can successfully use one of my amdgpu’s. But when I try to encode very same video file, it uses my CPU instead of GPU. Any suggestions ?

    ffmpeg -hwaccel dxva2 -threads 1 -i INPUT -f null - -benchmark

    With this it can successfully bench and give speeds like 10x 11x
    ( however using only 1 of my gpus, not both of RX580 )

    ffmpeg -hwaccel_device 0 -hwaccel dxva2 -threads 1 -i input.mp4 -f null output.mp4

    With this it looks like working but not saving any file, just like bench.

    ffmpeg -hwaccel_device 0 -hwaccel dxva2 -threads 1 -i input.mp4 -f output.mp4

    This gets an error : At least one output file must be specified

    ffmpeg -hwaccel_device 0 -hwaccel dxva2 -threads 1 -i input.mp4 output.mp4

    Same error.

    I’ve read i need to activate dxva2 :

    ffmpeg --enable-dxva2



    libavutil      56. 22.100 / 56. 22.100
     libavcodec     58. 35.100 / 58. 35.100
     libavformat    58. 20.100 / 58. 20.100
     libavdevice    58.  5.100 / 58.  5.100
     libavfilter     7. 40.101 /  7. 40.101
     libswscale      5.  3.100 /  5.  3.100
     libswresample   3.  3.100 /  3.  3.100
     libpostproc    55.  3.100 / 55.  3.100
    Unrecognized option '-enable-dxva2'.
    Error splitting the argument list: Option not found

    ffmpeg -i input.mp4 -vcodec h264 -acodec aac output.mp4

    this works using CPU but my CPU is not good enough....

    How can I enable dxva2 and/or make it use my GPU to encode the mp4 file ?

    Thanks in advance !