
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (34)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (3991)
-
Is it possible to seek through streamed youtube audio with discord.py (play from a given timestamp in the video) ?
13 juin 2020, par apc518Unfortunately passing in a URL with a &t= tag does not cause
discord.py
'sVoiceClient
to start playing at that timestamp. I'm usingyoutube_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 4FunI'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



-
command line audio equalizer ffmpeg sox
5 novembre 2016, par user1320370I 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 ?