
Recherche avancée
Autres articles (89)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7868)
-
How we can capture entire screen screenshot using android application via programming
18 novembre 2022, par Krunal IndrodiyaCan anyone having idea how we can capture entire screen screenshot including other application overlay menu and toast using android application programming not for adb commands and manual button press.


I have went through some of the code which is taking screenshot excluding toast and other application overlay displayed on my screen.


Below code is only capturing activity view screenshot not capturing any other app overrlay menu and toast. Mostly because of
val v1: View = window.decorView
this line.

val mPath: String = context.cacheDir.absolutePath + "/temp_${System.currentTimeMillis()}" + ".png"
// create bitmap screenshot
val v1: View = window.decorView
v1.isDrawingCacheEnabled = true
val bitmap = Bitmap.createBitmap(v1.drawingCache)
v1.isDrawingCacheEnabled = false
val imageFile = File(mPath)
val outputStream = FileOutputStream(imageFile)
val quality = 100
bitmap.compress(Bitmap.CompressFormat.PNG, quality, outputStream)
outputStream.flush()
outputStream.close()



Also try to execute command to capture screenshot via app programming but not get succeed,


val process = Runtime.getRuntime().exec("su")
val os = DataOutputStream(process.outputStream)
val cmd= "exec-out screencap"
os.writeBytes(cmd)
os.close()



Requirement


- 

- Listener to identify if any other app displaying overlay menu.
- I would like to capture screenshot when any other application overlay is displayed on my screen and screenshot must contains other application overlay.






Please let me know how can i archive this. I really appreciate for your single reply or answer. Thanks in advance.


-
How to record specific application window by using ffmpeg and screen capture ?
4 septembre 2013, par Maxim ShoustinI use screen-capture-recorder-to-video-windows-free application for screen sharing by using DirectShow.
Followed command will capture full screen desctop and write to
sss.mp4
.ffmpeg -f dshow -i video="screen-capture-recorder" sss.mp4
How can I grab only specific application window/frame (like Crome window) ?
Thank you,
-
drawertext color with conditon ffmpeg
31 octobre 2022, par abderrahim khadriI have a coin price banner where I use ffmpeg to stream it and use reload:1 to render it in real time. I want to color the negative with red and the positive with green , haw to do it and is it posible with fflmpeg


-vf 'drawtext=enable='between(t,18.93,20.28)':fontfile=fonts/cousine-bold.ttf:fontsize=144:fontcolor_expr=%{eif\\: if(between(0,1000)\, green\, red) \\: x}:x=82:y=288:text=coinsprice.txt:reload:1'