Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (51)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7375)

  • 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 ?