최근 포스트

C# libVLC player takesnapshot

최대 1 분 소요

vlc play 도중 특정 시점에서 이미지 캡쳐 하는 방법 ref : https://code.videolan.org/videolan/LibVLCSharp/-/issues/203 string _rtspEndpoint = "rtsp://admin:password@192.168.1...

C# wav file play

최대 1 분 소요

기본 사용법. using System.Media; private SoundPlayer soundPlayer = null; this.soundPlayer = new SoundPlayer(filePath); this.soundPlayer.PlayLooping(); this.s...

c# combocheckbox

최대 1 분 소요

c# combobox 리스트에 check box와 text와 param input 하고 싶은건 combobox로 드랍다운하고.. list중에 선택을 하고 특정값을  써 넣을수 있게 하는 방식.. ref : https://www.codeproject.com/Articles/18...

Android studio - aar 추가 하기..

최대 1 분 소요

가끔씩 라이브러리를 추가해야 할때가 있는데.. 흠.. SDK 에서 가이드해주는 방식으로 추가가 안된다.. 그러니까 project에서 f4를 눌러서 추가하는데.. 흠흠.. 그냥 empty project 만들고 libs에 aar file 넣구.. build.gradle file에...

linux ipc (socket)

1 분 소요

linux application ipc를 socket를 활용해서 제작.. 서버는 소켓을 열고 받은걸 바로 다시 보내는 형태로 제작 클라이언트는 연결된 소켓을 사용해서 보내고 받는걸 처리 (read에서 계속 대기 하는 형태입니다.) server.c #include <...