문제

I'm trying to stream rtsp video via tcp using mplayer in windows minGW shell and it depends on live555 streaming media library. The steps I did are:

  • download the live555 streaming media src
  • build each .mak files in src/live/ (I use nmake /f *.mak via command line, because my VS2010 can't recognize the .mak files.)

Building process was success and the result are .obj files. The problem is mplayer need .a files to make and the build didn't create it.

My question is:

  • do I really need the .a files? If so, how do I get it?
  • is there any other build method I can use to solve this?

Thanks :)

도움이 되었습니까?

해결책

Solved it.

Do I need .a files?

  • Yes, I need them.

How to get it?

  • run ./genMakeFiles mingw in src/live/ from MinGW
  • run make

다른 팁

run ./genMakefiles

run make

you can refer below link

http://www.live555.com/liveMedia/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top