Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (43)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (6099)

  • Is it possible to seek through streamed youtube audio with discord.py (play from a given timestamp in the video) ?

    13 juin 2020, par apc518

    Unfortunately passing in a URL with a &t= tag does not cause discord.py's VoiceClient to start playing at that timestamp. I'm using youtube_dl.

    



    Is is possible to seek through audio within discord.py in order to start streaming a YouTube video from somewhere besides the start ?

    



    I know some professional bots like Groovy have seek commands for streamed YouTube videos, so the Discord API itself is capable of this.

    



    The code I'm using is from here.

    


  • Quires about a GUI application Video editor in Python

    23 décembre 2020, par Education 4Fun

    I'm new to GUI in python I wanna build a small video editor with few extra functionalities than normal video editors like bulk editing is the most imp functionality which I did work on it and made possible using FFMPEG(few modules) Now I wanna add GUI like a normal software (VSDC, filmora) and the timeline for the video to drop them like the whole GUI is what I need work on
So I need some references to GUIS and which to use so I can make my application professional or if u have any idea abt any open-source video editor please share references That help a lot
    
Please suggest me libraries too.
    
Thank you
    
A small reference of VSDC editor
    
enter image description here

    


  • command line audio equalizer ffmpeg sox

    5 novembre 2016, par user1320370

    I need to add equalizer effect on some flac files :

    f=4043, 1.65q, g=9.5; f=7024, 1.09q, g=3.7; f=9254, 0.94q, g=-2.5

    I was tried ffmpeg :

    ffmpeg -i solovoce_compress.flac -af equalizer=f=4043:width_type=q:w=1.65:g=9.5, equalizer=f=7024:width_type=q:w=1.09:g=3.7,equalizer=f=9254:width_type=q:w=0.94:g=-2.5 solovoce_equalizzato.flac

    but the result is much different then what I expect, this values was calculated by izotope ozone (professional audio editor software) and tested.

    I used the equivalent with sox and the result is some.

    A this point I like to try ffmpeg ’anequalizer’ filter that show the graph so I can ’see’ the difference, but I the documentation to show the graph is not clear and I was not found nothing about on web.

    Someone can please send me an example of ’anequalizer’ with plot enabled ?