Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (6)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (3064)

  • How to merge init.mp4 file with m4s segments on windows command

    5 juillet 2018, par Bella

    I have a online video file which I have paid for and would like to download and keep for personal use. The video file on the website has an initial mp4 file and m4s files in segments. I have tried Invidownloader but it isn’t working when I try to convert the concatenated m4s file to mp4. I think it might be because the program isn’t concatenating the mp4 and m4s files together properly ? Would there by any possible way I will be able to merge all the files together so I can download and merge all the file to a single playable mp4 file ?

    If it requires any command, it would be helpful if it is for windows command.
    I am also open to any other useful program recommendations as well. Anything that will allow me to merge all the files.

  • log : Unbreak windows support

    3 avril 2014, par Luca Barbato
    log : Unbreak windows support
    

    Add the missing define.

    • [DBH] libavutil/log.c
  • Hardware encode vp9 on Windows Nvida GPU using ffmpeg

    27 décembre 2023, par Todilo

    I am trying to understand if I can hardware encode VP9 on a windows machine with consumer grade GPU.

    


    Supported codec list (ffmpeg -codecs)
gives me :

    


     DEV.L. vp9                  Google VP9 (decoders: vp9 libvpx-vp9 vp9_cuvid vp9_qsv ) (encoders: libvpx-vp9 vp9_qsv )


    


    And I try to run command

    


    ffmpeg -hwaccel cuda  -an -i file_example_MP4_640_3MG.mp4 -c:v libvpx-vp9 -b:v 1M output-hardware-libvpx-vp9.webm 


    


    but I dont see any performance difference between toggling on the -hwaccel cuda
flag on/off

    


    What am I missing ? I want to do fast realtime encoding of a video stream to a webrtc compatible format and VP9 seem to be the most supported format.