
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 (64)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (10152)
-
Encode loopback capture data in mp3 using ffmpeg in VC++
16 octobre 2013, par NetCoder89I'm trying to work on loopback capture(What you hear) and record this file in mp3/aac format using VC++.
>I can capture audio and can create a .wav file i.e. not compressed but I want a compressed file so I'm encoding this through ffmpeg to write an mp3 file not a .wav.
However I'm not getting any way to do it directly ?
I referred this for loopback capture.Please share your experience and opinions.
Thanks !
-
how to draw n number of rectangles on video with ffmpeg
29 octobre 2017, par taltal115Im trying to create a video for testing framrate html5 players
this video need to contain rectanges for each frame for the first 10 frames
i need it to be dynamic.for now i have the following command :
ffmpeg -loop 1 -i black.png -c:v libx264 -t 15 -r 30 -vcodec h264 -pix_fmt yuv420p \
-vf "[in]drawtext=fontfile=/usr/share/fonts/open-sans/OpenSans-Regular.ttf : text=%{n}:x=(w-tw): y=h-(lh): fontcolor=white: box=1: boxcolor=0x00000099, \
drawbox=x='mod(t\,10)*32':w=16:h=16:color=white@1[out]" \
-y out123.mp4again im trying to draw a rectangle for each frame in the to image like so :
x=16*0,x=16*1,x=16*2...the only mving pate here is the x param and its not moving
can any one help ? -
How to extract DCT coefficients from H.265 compressed videos
28 mars 2021, par VitriolI want to extract DCT coefficients(both AC-DC coefficients) from H.265 compressed videos but i can't find any kind of example codes. Can anyone share code or function that extract these coefficients ? I have already analyzed source code of reference software of H.265. This reference software can be reached via following link : H.265 Reference Software. Any kind of advise are also appreciated.