음성씽크가 안맞는 한국 릴리즈 동영상 재생을 위하여.
테스트용으로 올립니다. 정식 배포는 아닙니다.
파일 링크 : http://files.ucloud.com/pf/D6788352_87_043979181
https://www.dropbox.com/s/5a2hp39cs8w6fu3/KJPlayer.zip
== 아래는 README내용
KJPlayer 설명서
- 졸리기도하고, 졸업논문 쓰다가 스트레스해소로 시작하였는데 어느덧 날이 밝았네요 아하하;;, 설명서 본문에서는 편하게 글을 쓰겠습니다. 양해해 주세요
- 맥에서 동영상 재생이 잘안되는 (FFMPEG라는 훌륭한 녀석이 있는데 왜 사용하는 녀석이 없는지가 의문인..) 플레이어들의 원성 때문에 만들어 봤습니다.
- 당연히 "심심풀이"로 만든것이기 때문에 기존 플레이어들보다 못한 녀석이 탄생한걸지도 모릅니다.
- UI를 OPENGL로 하다보니 X11라이브러리를 쓰게되었습니다. 마운틴에서 돌아갈지 모르겠습니다.
- 한국 릴중에 음성만 빠르게 재생되거나 잠깐 음성이 나왔다가 안나오는 녀석들이 재생이 잘되는것 같습니다.(저에게 있는 몇가지 파일은 잘되네요)
FFMPEG를 이용한 동영상 뷰어
자막 지원 안함
개선 작업 예정 : 무기한 연장 (졸업 논문 때문에.. XCODE로 UI써써 만들어 볼까도 하는데 시간이 되면..)
실행파일: KJPlayer
필요프레임워크:SDL (직접 받으셔도 됩니다)
필요프로그램: 아마도 Xcode를 설치하여야 정상동작할듯
1. 설치 및 사용 방법
Finder에서 cmd+shift+g를 누르고 /Library/Frameworks로 간다
SDLFramework 폴더를 /Library/Frameworks에 넣는다
Finder에서 cmd+shift+g를 누르고 ~/로 간다
KJPlayer를 ~/에 복사한다
찾기버튼으로 terminal을 찾아 터미널을 연다
./KJPlayer "동영상파일명"
감상한다.
2. 삭제방법
삭제는 설치의 역순으로 한다. KJPlayer, SDLFramework를 제거한다.
3. 기타 공지
-음성에 싱크를 맞추어 놓았기 때문에 음성 속도에 문제가 있는 파일은 이상하게 읽힐수 있다.
-FFMPEG 컴파일할때 라이브러리를 많이 뺴먹어서 예상보다 많은 동영상이 재생 안될수 있다.
-자막이 안된다
-전체화면이 안된다.
-앞뒤로 가기가 안된다.
-파일이 없으면 프로그램이 비정상 종료해서 에러창이 뜬다.
-동여상을 다보면 프로그램이 비정상 종료해서 에러창이 뜬다.
4. 만약에 업데이트를 한다면
- 위에 안되는거 되게한다
- UI도 이쁘게 만들어본다
5. 안되는 파일 공유하기
- kjlee5435@gmail.com 으로 다음클라우드 등을 이용해서 안되는 파일을 보내 주세요.
- 또는 콘솔창에뜬 인코딩 정보를 공유하는것도 좋을것 같습니다.
2012년 7월 17일 화요일
2012년 2월 18일 토요일
Install NS2.35 to Mac OS(Lion)
You have experienced otcl compile failures when you install all-in-one package to your mac.
(Like this : Undefined symbols for architecture x86_64)
I find a way to install ns-2.35 version to mac OS (Lion 64bit).
You needs tcl8.5.11, tk8.5.11, tclcl-1.20, otcl-1.14, and ns-2.35.
You can get files via "http://www.isi.edu/nsnam/ns/ns-build.html"
I assume that your folder locate in /Users/kwangjo/Documents/ns
Open terminal and goto the folder.
! You should install Xcode before doing follow instruction.
1. Change superuser mode
2. compile tcl8.5.11
4. compile otcl-1.14
! Before compile, you should make library link and include link.
5. compile tclcl-1.20
! You can compile ns-2.35 with normal user mode(this compile do not need super user mode)
6. compile ns-2.35
"validate overall report: all tests passed"
Now you get compiled ns2 simulator on your mac.
(Like this : Undefined symbols for architecture x86_64)
I find a way to install ns-2.35 version to mac OS (Lion 64bit).
You needs tcl8.5.11, tk8.5.11, tclcl-1.20, otcl-1.14, and ns-2.35.
You can get files via "http://www.isi.edu/nsnam/ns/ns-build.html"
I assume that your folder locate in /Users/kwangjo/Documents/ns
Open terminal and goto the folder.
! You should install Xcode before doing follow instruction.
1. Change superuser mode
- sudo su
- tar xvfz "PACKAGES"
2. compile tcl8.5.11
- cd /Users/kwangjo/Documents/ns/tcl8.5.11
- cd unix
- ./configure --enable-framework --enable-64bit
- make
- make test
- ## you should pass all test.
- make install
- cd /Users/kwangjo/Documents/ns/tk8.5.11
- ./configure --enable-framework --enable-64bit
- make
- make install
4. compile otcl-1.14
! Before compile, you should make library link and include link.
- ln -s /Users/kwangjo/Documents/ns/tk8.5.11/library /usr/share/tk8.5
- ln -s /Users/kwangjo/Documents/ns/tcl8.5.11/library /usr/share/tcl8.5
- ln -s /Users/kwangjo/Documents/ns/tk8.5.11/generic /usr/include/tk8.5
- ln -s /Users/kwangjo/Documents/ns/tcl8.5.11/generic /usr/include/tcl8.5
- cp /Users/kwangjo/Documents/ns/tcl8.5.11/unix/*.h /Users/kwangjo/Documents/ns/tcl8.5.11/generic
- cd /Users/kwangjo/Documents/ns/otcl-1.14
- ./configure
- make
5. compile tclcl-1.20
- cd /Users/kwangjo/Documents/ns/tclcl-1.20
- ./configure
- make
! You can compile ns-2.35 with normal user mode(this compile do not need super user mode)
6. compile ns-2.35
- cd /Users/kwangjo/Documents/ns/ns-2.35
- ./configure
- make
- ##For accurate simulation you should pass validation tool.
- ./validate
"validate overall report: all tests passed"
Now you get compiled ns2 simulator on your mac.
피드 구독하기:
글 (Atom)
RPI is not good handling DHT11
Hello? This is failure story about converting c code to python. There is GPIO controlling library on Python such as RPI, wiringPI. But...
-
Hello? This is failure story about converting c code to python. There is GPIO controlling library on Python such as RPI, wiringPI. But...
-
You have experienced otcl compile failures when you install all-in-one package to your mac. (Like this : Undefined symbols for architectur...