
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe 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 (9254)
-
FFMPEG get ID3v2 tag size
5 février 2016, par RiverchimpIn ffmpeg is there a way to get the size of an ID3v2 tag ? When I open the song file with
avformat_open_input
ffmpeg prints out these logs.V/FFMPEG: Probing mp3 score:12 size:2048
V/FFMPEG: Format mp3 probed with size=2048 and score=50
V/FFMPEG: id3v2 ver:3 flags:00 len:1075646
V/FFMPEG: Skipping 0 bytes of junk at 1075656.I could parse these logs to get the size but I would prefer a more robust solution.
-
avfilter/vf_gblur : add x86 SIMD optimizations
15 mai 2019, par Ruiling Songavfilter/vf_gblur : add x86 SIMD optimizations
The horizontal pass get 2x performance with the patch
under single thread.Tested overall performance using the command(avx2 enabled) :
./ffmpeg -i 1080p.mp4 -vf gblur -f null /dev/null
./ffmpeg -i 1080p.mp4 -vf gblur=threads=1 -f null /dev/null
For single thread, the fps improves from 43 to 60, about 40%.
For multi-thread, the fps improves from 110 to 130, about 20%.Signed-off-by : Ruiling Song <ruiling.song@intel.com>
-
How can i capture microphone stream and change with ffmpeg ?
23 janvier 2020, par Emre ErolI am using ffmpeg for chancing wav file with below code on python ;
song = subprocess.Popen(["ffmpeg", "-i", sys.argv[1], "-af", "asetrate=22050,aresample=44100,atempo=2", "-f", "wav", "pipe:1"],stdout=subprocess.PIPE)
But i want to send microphone stream to this subprocess. How can i change sys.argv[1] to microphone stream data ?
I am using pyaudoio library for capturing sound in python.