Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • 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 (12874)

  • How do I run ffmpeg m3u8 download on iso when moved to background ?

    20 juillet 2022, par user12719663

    I am trying to download an m3u8 playlist in my ioS App using the following ffmpeg command line :
-i ""+url[0].absoluteString+"" -i ""+url[1].absoluteString+"" -c copy "+downloadsDirURL.absoluteString
This works fine when the iPad is open but as soon as it has been closedand goes into Background the process stops. I have tried including the command option -nostdin without success. Is it at all possible to execute this in background mode ?

    


  • How to download m3u8 file from websites like hotstar in php, js, nodejs [on hold]

    11 juillet 2018, par gaurav pandey

    I’m trying to download the m3u8 file from website’s(Like hotstar, voot etc) video link using php or javascript or nodejs or python.

    Please help.
    Thanks

  • ffmpeg : overlay a png image on a video with custom transparency ?

    4 août 2016, par RocketNuts

    Suppose I have a video foo.mkv and an image bar.png (which happens to contains an alpha channel). I can blend this image over the video like this :

    ffmpeg
    -i foo.mkv
    -i bar.png
    -filter_complex "[0:v][1:v]overlay"
    -vcodec libx264
    myresult.mkv

    (using multiple lines here for readability, normally this is one command line).

    Now, besides the png image having an alpha channel of its own, I would also apply a custom overall transparency when blending this image over the video.

    In the above example, the image would be visible 100% on top of the video — or at least the parts where its alpha channel is fully opaque.

    Is there a way to add a custom overall opacity or transparency blend factor, something like opacity=0.5 or whatever, which would make the image only 50% visible ?