본문 바로가기

전체 글963

골드웨이브v5.0 한글판 다운 2009. 1. 16.
<img src="http://blogimgs.naver.com/nblog/ico_scrap01.gif" class="i_scrap" width="50" height="15" alt="본문스크랩" /> 골드웨이브 골드 웨이브(GoldWave)란 무엇인가?단순히 오디오 데이터를 듣는 것에만 의존하지 않고 오디오 데이터의 편집을 원하는 경우도 있을 것입니다. 예를 들어, 자기가 좋아하는 라디오 프로그램을 녹음했다고 가정해봅시다. 하지만, 사용자가 뜻하지 않게 어떤 잡음이 들어가 있는 경우나 특정 부분을 잘라내고 싶은 경우가 있을 것입니다. 이 때, 필요한 프로그램이 골드 웨이브(GoldWave)입니다.GoldWave 프로그램은 원본 오디오 데이터의 편집과 원본 오디오 데이터와 전혀 다른 오디오 데이터의 생성에 적합한 프로그램입니다. 골드 웨이브(Goldwave) 강좌 1 : 전체 윈도우GoldWave 프로그램은 세 가지 윈도우(메인 윈도우(Main Window), 컨트롤 윈도우(Control Window)와 사운드 .. 2009. 1. 15.
[C#] AutoResetEvent 와 ManualResetEvnet 예제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading;namespace WaitHandleTest1 { class ThreadPlayer { private string m_name; //이름 private Random m_random; //달리기속도를 다르게 하기 위한 Random //이벤트. 맨처음에 이벤트 발생이면 true 아님 false private ManualResetEvent m_event = new ManualResetEvent(false); // private AutoResetEvent m_event = new AutoResetEvent(false);.. 2009. 1. 15.
동기화 테스트 예제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading;namespace SyncTest1 { class Sync { int m_count = 0; public int Count { get { return m_count; } } public void Count100() { for (int i = 0; i < 100; i++) { //Monitor.Enter(this); //try //{ lock(this) { int temp = m_count; Thread.Sleep(1); temp++; //Interlocked.Increment(ref temp); m_count =.. 2009. 1. 15.
Thread 5분연습 예제 단지 스레드 생성후 중단, 다시시작 종료하는 5분프로그램뭐어~~ 5분보다 더 빨리 짤 수 있다고?ㅋ 2009. 1. 15.
[C#] TCP에코서버 클라이언트 스트림으로 주고받기 예제 --TCP 에코서버 스트림으로 주고받기 --using System; using System.Collections.Generic; using System.Linq; using System.Text; //네임스페이스 추가 using System.Net; using System.Net.Sockets; using System.IO; namespace TCPEchoServer { class Program { const int ServerPort = 4576; static void Main(string[] args) { Socket listenSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPEndPoint .. 2009. 1. 15.
[C#]TCP 에코 서버 클라이언트 예제 --TCP 에코서버--using System; using System.Collections.Generic; using System.Linq; using System.Text; //네임스페이스 추가 using System.Net; using System.Net.Sockets; using System.IO; namespace TCPEchoServer { class Program { const int ServerPort = 4576; static void Main(string[] args) { Socket listenSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPEndPoint listenEP = n.. 2009. 1. 15.
[C#] ASCII로 파일입출력 하기 예제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO;namespace ASCIIFileWriter { class Program { //받을 버퍼의 크기 const int ReadBufferSize = 128; static void Main(string[] args) { try { FileStream file = null; //읽기로 파일 열거나 생성 file = new FileStream("ASCIIFileSample.txt", FileMode.OpenOrCreate, FileAccess.Read); //버퍼 크기만큼 읽음 byte[] buffer = new byte[Read.. 2009. 1. 15.
[C#]인코딩예제 using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace EncodingTest { class Program { //귀찮아서 줄여씀 static private Encoding ASCII = Encoding.ASCII; static private Encoding Unicode = Encoding.Unicode; static void Main(string[] args) { string originalString = "Hello~?"; Console.WriteLine("원본 문자열 : {0}", originalString); //byte단위로 변환 Console.Write("원본 문자열 내용 : ".. 2009. 1. 15.