实例介绍
通过对LIve源码的修改 实现视频直播,可使用LVC等工具输入IP\端口号\视频名称实现从服务器中获取视频流
【实例截图】
【核心代码】
4744302543409406046.rar
└── live555test -send
├── Debug
│ └── test.264
├── live555test
│ ├── BasicUsageEnvironment
│ │ ├── BasicHashTable.cpp
│ │ ├── BasicTaskScheduler0.cpp
│ │ ├── BasicTaskScheduler.cpp
│ │ ├── BasicUsageEnvironment0.cpp
│ │ ├── BasicUsageEnvironment.cpp
│ │ ├── COPYING
│ │ ├── DelayQueue.cpp
│ │ ├── include
│ │ │ ├── BasicHashTable.hh
│ │ │ ├── BasicUsageEnvironment0.hh
│ │ │ ├── BasicUsageEnvironment.hh
│ │ │ ├── BasicUsageEnvironment_version.hh
│ │ │ ├── DelayQueue.hh
│ │ │ └── HandlerSet.hh
│ │ ├── Makefile.head
│ │ └── Makefile.tail
│ ├── Debug
│ │ ├── live555test.Build.CppClean.log
│ │ └── live555test.log
│ ├── groupsock
│ │ ├── COPYING
│ │ ├── GroupEId.cpp
│ │ ├── Groupsock.cpp
│ │ ├── GroupsockHelper.cpp
│ │ ├── include
│ │ │ ├── GroupEId.hh
│ │ │ ├── GroupsockHelper.hh
│ │ │ ├── Groupsock.hh
│ │ │ ├── groupsock_version.hh
│ │ │ ├── IOHandlers.hh
│ │ │ ├── NetAddress.hh
│ │ │ ├── NetCommon.h
│ │ │ ├── NetInterface.hh
│ │ │ └── TunnelEncaps.hh
│ │ ├── inet.c
│ │ ├── IOHandlers.cpp
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── NetAddress.cpp
│ │ └── NetInterface.cpp
│ ├── H264FramedLiveSource.cpp
│ ├── H264FramedLiveSource.hh
│ ├── H264LiveVideoServerMediaSubssion.cpp
│ ├── H264LiveVideoServerMediaSubssion.hh
│ ├── lib
│ │ ├── BasicUsageEnvironment.lib
│ │ ├── groupsock.lib
│ │ ├── liveMedia.lib
│ │ └── UsageEnvironment.lib
│ ├── live555test.cpp
│ ├── live555test.vcxproj
│ ├── live555test.vcxproj.filters
│ ├── live555test.vcxproj.user
│ ├── liveMedia
│ │ ├── AACAudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── AACAudioMatroskaFileServerMediaSubsession.hh
│ │ ├── AC3AudioFileServerMediaSubsession.cpp
│ │ ├── AC3AudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── AC3AudioMatroskaFileServerMediaSubsession.hh
│ │ ├── AC3AudioRTPSink.cpp
│ │ ├── AC3AudioRTPSource.cpp
│ │ ├── AC3AudioStreamFramer.cpp
│ │ ├── ADTSAudioFileServerMediaSubsession.cpp
│ │ ├── ADTSAudioFileSource.cpp
│ │ ├── AMRAudioFileServerMediaSubsession.cpp
│ │ ├── AMRAudioFileSink.cpp
│ │ ├── AMRAudioFileSource.cpp
│ │ ├── AMRAudioRTPSink.cpp
│ │ ├── AMRAudioRTPSource.cpp
│ │ ├── AMRAudioSource.cpp
│ │ ├── AudioInputDevice.cpp
│ │ ├── AudioRTPSink.cpp
│ │ ├── AVIFileSink.cpp
│ │ ├── Base64.cpp
│ │ ├── BasicUDPSink.cpp
│ │ ├── BasicUDPSource.cpp
│ │ ├── BitVector.cpp
│ │ ├── BitVector.hh
│ │ ├── ByteStreamFileSource.cpp
│ │ ├── ByteStreamMemoryBufferSource.cpp
│ │ ├── ByteStreamMultiFileSource.cpp
│ │ ├── COPYING
│ │ ├── DarwinInjector.cpp
│ │ ├── DeviceSource.cpp
│ │ ├── DigestAuthentication.cpp
│ │ ├── DVVideoFileServerMediaSubsession.cpp
│ │ ├── DVVideoRTPSink.cpp
│ │ ├── DVVideoRTPSource.cpp
│ │ ├── DVVideoStreamFramer.cpp
│ │ ├── EBMLNumber.cpp
│ │ ├── EBMLNumber.hh
│ │ ├── FileServerMediaSubsession.cpp
│ │ ├── FileSink.cpp
│ │ ├── FramedFileSource.cpp
│ │ ├── FramedFilter.cpp
│ │ ├── FramedSource.cpp
│ │ ├── GSMAudioRTPSink.cpp
│ │ ├── H261VideoRTPSource.cpp
│ │ ├── H263plusVideoFileServerMediaSubsession.cpp
│ │ ├── H263plusVideoRTPSink.cpp
│ │ ├── H263plusVideoRTPSource.cpp
│ │ ├── H263plusVideoStreamFramer.cpp
│ │ ├── H263plusVideoStreamParser.cpp
│ │ ├── H263plusVideoStreamParser.hh
│ │ ├── H264VideoFileServerMediaSubsession.cpp
│ │ ├── H264VideoFileSink.cpp
│ │ ├── H264VideoMatroskaFileServerMediaSubsession.cpp
│ │ ├── H264VideoMatroskaFileServerMediaSubsession.hh
│ │ ├── H264VideoRTPSink.cpp
│ │ ├── H264VideoRTPSource.cpp
│ │ ├── H264VideoStreamDiscreteFramer.cpp
│ │ ├── H264VideoStreamFramer.cpp
│ │ ├── include
│ │ │ ├── AC3AudioFileServerMediaSubsession.hh
│ │ │ ├── AC3AudioRTPSink.hh
│ │ │ ├── AC3AudioRTPSource.hh
│ │ │ ├── AC3AudioStreamFramer.hh
│ │ │ ├── ADTSAudioFileServerMediaSubsession.hh
│ │ │ ├── ADTSAudioFileSource.hh
│ │ │ ├── AMRAudioFileServerMediaSubsession.hh
│ │ │ ├── AMRAudioFileSink.hh
│ │ │ ├── AMRAudioFileSource.hh
│ │ │ ├── AMRAudioRTPSink.hh
│ │ │ ├── AMRAudioRTPSource.hh
│ │ │ ├── AMRAudioSource.hh
│ │ │ ├── AudioInputDevice.hh
│ │ │ ├── AudioRTPSink.hh
│ │ │ ├── AVIFileSink.hh
│ │ │ ├── Base64.hh
│ │ │ ├── BasicUDPSink.hh
│ │ │ ├── BasicUDPSource.hh
│ │ │ ├── ByteStreamFileSource.hh
│ │ │ ├── ByteStreamMemoryBufferSource.hh
│ │ │ ├── ByteStreamMultiFileSource.hh
│ │ │ ├── DarwinInjector.hh
│ │ │ ├── DeviceSource.hh
│ │ │ ├── DigestAuthentication.hh
│ │ │ ├── DVVideoFileServerMediaSubsession.hh
│ │ │ ├── DVVideoRTPSink.hh
│ │ │ ├── DVVideoRTPSource.hh
│ │ │ ├── DVVideoStreamFramer.hh
│ │ │ ├── FileServerMediaSubsession.hh
│ │ │ ├── FileSink.hh
│ │ │ ├── FramedFileSource.hh
│ │ │ ├── FramedFilter.hh
│ │ │ ├── FramedSource.hh
│ │ │ ├── GSMAudioRTPSink.hh
│ │ │ ├── H261VideoRTPSource.hh
│ │ │ ├── H263plusVideoFileServerMediaSubsession.hh
│ │ │ ├── H263plusVideoRTPSink.hh
│ │ │ ├── H263plusVideoRTPSource.hh
│ │ │ ├── H263plusVideoStreamFramer.hh
│ │ │ ├── H264VideoFileServerMediaSubsession.hh
│ │ │ ├── H264VideoFileSink.hh
│ │ │ ├── H264VideoRTPSink.hh
│ │ │ ├── H264VideoRTPSource.hh
│ │ │ ├── H264VideoStreamDiscreteFramer.hh
│ │ │ ├── H264VideoStreamFramer.hh
│ │ │ ├── InputFile.hh
│ │ │ ├── JPEGVideoRTPSink.hh
│ │ │ ├── JPEGVideoRTPSource.hh
│ │ │ ├── JPEGVideoSource.hh
│ │ │ ├── liveMedia.hh
│ │ │ ├── liveMedia_version.hh
│ │ │ ├── Locale.hh
│ │ │ ├── MatroskaFile.hh
│ │ │ ├── MatroskaFileServerDemux.hh
│ │ │ ├── Media.hh
│ │ │ ├── MediaSession.hh
│ │ │ ├── MediaSink.hh
│ │ │ ├── MediaSource.hh
│ │ │ ├── MP3ADU.hh
│ │ │ ├── MP3ADUinterleaving.hh
│ │ │ ├── MP3ADURTPSink.hh
│ │ │ ├── MP3ADURTPSource.hh
│ │ │ ├── MP3ADUTranscoder.hh
│ │ │ ├── MP3AudioFileServerMediaSubsession.hh
│ │ │ ├── MP3FileSource.hh
│ │ │ ├── MP3HTTPSource.hh
│ │ │ ├── MP3Transcoder.hh
│ │ │ ├── MPEG1or2AudioRTPSink.hh
│ │ │ ├── MPEG1or2AudioRTPSource.hh
│ │ │ ├── MPEG1or2AudioStreamFramer.hh
│ │ │ ├── MPEG1or2DemuxedElementaryStream.hh
│ │ │ ├── MPEG1or2DemuxedServerMediaSubsession.hh
│ │ │ ├── MPEG1or2Demux.hh
│ │ │ ├── MPEG1or2FileServerDemux.hh
│ │ │ ├── MPEG1or2VideoFileServerMediaSubsession.hh
│ │ │ ├── MPEG1or2VideoRTPSink.hh
│ │ │ ├── MPEG1or2VideoRTPSource.hh
│ │ │ ├── MPEG1or2VideoStreamDiscreteFramer.hh
│ │ │ ├── MPEG1or2VideoStreamFramer.hh
│ │ │ ├── MPEG2IndexFromTransportStream.hh
│ │ │ ├── MPEG2TransportFileServerMediaSubsession.hh
│ │ │ ├── MPEG2TransportStreamFramer.hh
│ │ │ ├── MPEG2TransportStreamFromESSource.hh
│ │ │ ├── MPEG2TransportStreamFromPESSource.hh
│ │ │ ├── MPEG2TransportStreamIndexFile.hh
│ │ │ ├── MPEG2TransportStreamMultiplexor.hh
│ │ │ ├── MPEG2TransportStreamTrickModeFilter.hh
│ │ │ ├── MPEG2TransportUDPServerMediaSubsession.hh
│ │ │ ├── MPEG4ESVideoRTPSink.hh
│ │ │ ├── MPEG4ESVideoRTPSource.hh
│ │ │ ├── MPEG4GenericRTPSink.hh
│ │ │ ├── MPEG4GenericRTPSource.hh
│ │ │ ├── MPEG4LATMAudioRTPSink.hh
│ │ │ ├── MPEG4LATMAudioRTPSource.hh
│ │ │ ├── MPEG4VideoFileServerMediaSubsession.hh
│ │ │ ├── MPEG4VideoStreamDiscreteFramer.hh
│ │ │ ├── MPEG4VideoStreamFramer.hh
│ │ │ ├── MPEGVideoStreamFramer.hh
│ │ │ ├── MultiFramedRTPSink.hh
│ │ │ ├── MultiFramedRTPSource.hh
│ │ │ ├── OnDemandServerMediaSubsession.hh
│ │ │ ├── OutputFile.hh
│ │ │ ├── PassiveServerMediaSubsession.hh
│ │ │ ├── QCELPAudioRTPSource.hh
│ │ │ ├── QuickTimeFileSink.hh
│ │ │ ├── QuickTimeGenericRTPSource.hh
│ │ │ ├── RTCP.hh
│ │ │ ├── RTPInterface.hh
│ │ │ ├── RTPSink.hh
│ │ │ ├── RTPSource.hh
│ │ │ ├── RTSPClient.hh
│ │ │ ├── RTSPCommon.hh
│ │ │ ├── RTSPServer.hh
│ │ │ ├── RTSPServerSupportingHTTPStreaming.hh
│ │ │ ├── ServerMediaSession.hh
│ │ │ ├── SimpleRTPSink.hh
│ │ │ ├── SimpleRTPSource.hh
│ │ │ ├── SIPClient.hh
│ │ │ ├── StreamReplicator.hh
│ │ │ ├── T140TextRTPSink.hh
│ │ │ ├── TCPStreamSink.hh
│ │ │ ├── TextRTPSink.hh
│ │ │ ├── uLawAudioFilter.hh
│ │ │ ├── VideoRTPSink.hh
│ │ │ ├── VorbisAudioRTPSink.hh
│ │ │ ├── VorbisAudioRTPSource.hh
│ │ │ ├── VP8VideoRTPSink.hh
│ │ │ ├── VP8VideoRTPSource.hh
│ │ │ ├── WAVAudioFileServerMediaSubsession.hh
│ │ │ ├── WAVAudioFileSource.hh
│ │ │ └── WAVAudioFileSource.hh.save
│ │ ├── InputFile.cpp
│ │ ├── JPEGVideoRTPSink.cpp
│ │ ├── JPEGVideoRTPSource.cpp
│ │ ├── JPEGVideoSource.cpp
│ │ ├── Locale.cpp
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── MatroskaDemuxedTrack.cpp
│ │ ├── MatroskaDemuxedTrack.hh
│ │ ├── MatroskaFile.cpp
│ │ ├── MatroskaFileParser.cpp
│ │ ├── MatroskaFileParser.hh
│ │ ├── MatroskaFileServerDemux.cpp
│ │ ├── Media.cpp
│ │ ├── MediaSession.cpp
│ │ ├── MediaSink.cpp
│ │ ├── MediaSource.cpp
│ │ ├── MP3ADU.cpp
│ │ ├── MP3ADUdescriptor.cpp
│ │ ├── MP3ADUdescriptor.hh
│ │ ├── MP3ADUinterleaving.cpp
│ │ ├── MP3ADURTPSink.cpp
│ │ ├── MP3ADURTPSource.cpp
│ │ ├── MP3ADUTranscoder.cpp
│ │ ├── MP3AudioFileServerMediaSubsession.cpp
│ │ ├── MP3AudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── MP3AudioMatroskaFileServerMediaSubsession.hh
│ │ ├── MP3FileSource.cpp
│ │ ├── MP3HTTPSource.cpp
│ │ ├── MP3Internals.cpp
│ │ ├── MP3Internals.hh
│ │ ├── MP3InternalsHuffman.cpp
│ │ ├── MP3InternalsHuffman.hh
│ │ ├── MP3InternalsHuffmanTable.cpp
│ │ ├── MP3StreamState.cpp
│ │ ├── MP3StreamState.hh
│ │ ├── MP3Transcoder.cpp
│ │ ├── MPEG1or2AudioRTPSink.cpp
│ │ ├── MPEG1or2AudioRTPSource.cpp
│ │ ├── MPEG1or2AudioStreamFramer.cpp
│ │ ├── MPEG1or2Demux.cpp
│ │ ├── MPEG1or2DemuxedElementaryStream.cpp
│ │ ├── MPEG1or2DemuxedServerMediaSubsession.cpp
│ │ ├── MPEG1or2FileServerDemux.cpp
│ │ ├── MPEG1or2VideoFileServerMediaSubsession.cpp
│ │ ├── MPEG1or2VideoRTPSink.cpp
│ │ ├── MPEG1or2VideoRTPSource.cpp
│ │ ├── MPEG1or2VideoStreamDiscreteFramer.cpp
│ │ ├── MPEG1or2VideoStreamFramer.cpp
│ │ ├── MPEG2IndexFromTransportStream.cpp
│ │ ├── MPEG2TransportFileServerMediaSubsession.cpp
│ │ ├── MPEG2TransportStreamFramer.cpp
│ │ ├── MPEG2TransportStreamFromESSource.cpp
│ │ ├── MPEG2TransportStreamFromPESSource.cpp
│ │ ├── MPEG2TransportStreamIndexFile.cpp
│ │ ├── MPEG2TransportStreamMultiplexor.cpp
│ │ ├── MPEG2TransportStreamTrickModeFilter.cpp
│ │ ├── MPEG2TransportUDPServerMediaSubsession.cpp
│ │ ├── MPEG4ESVideoRTPSink.cpp
│ │ ├── MPEG4ESVideoRTPSource.cpp
│ │ ├── MPEG4GenericRTPSink.cpp
│ │ ├── MPEG4GenericRTPSource.cpp
│ │ ├── MPEG4LATMAudioRTPSink.cpp
│ │ ├── MPEG4LATMAudioRTPSource.cpp
│ │ ├── MPEG4VideoFileServerMediaSubsession.cpp
│ │ ├── MPEG4VideoStreamDiscreteFramer.cpp
│ │ ├── MPEG4VideoStreamFramer.cpp
│ │ ├── MPEGVideoStreamFramer.cpp
│ │ ├── MPEGVideoStreamParser.cpp
│ │ ├── MPEGVideoStreamParser.hh
│ │ ├── MultiFramedRTPSink.cpp
│ │ ├── MultiFramedRTPSource.cpp
│ │ ├── OnDemandServerMediaSubsession.cpp
│ │ ├── our_md5.c
│ │ ├── our_md5.h
│ │ ├── our_md5hl.c
│ │ ├── OutputFile.cpp
│ │ ├── PassiveServerMediaSubsession.cpp
│ │ ├── QCELPAudioRTPSource.cpp
│ │ ├── QuickTimeFileSink.cpp
│ │ ├── QuickTimeGenericRTPSource.cpp
│ │ ├── RTCP.cpp
│ │ ├── rtcp_from_spec.c
│ │ ├── rtcp_from_spec.h
│ │ ├── RTPInterface.cpp
│ │ ├── RTPSink.cpp
│ │ ├── RTPSource.cpp
│ │ ├── RTSPClient.cpp
│ │ ├── RTSPCommon.cpp
│ │ ├── RTSPServer.cpp
│ │ ├── RTSPServerSupportingHTTPStreaming.cpp
│ │ ├── ServerMediaSession.cpp
│ │ ├── SimpleRTPSink.cpp
│ │ ├── SimpleRTPSource.cpp
│ │ ├── SIPClient.cpp
│ │ ├── StreamParser.cpp
│ │ ├── StreamParser.hh
│ │ ├── StreamReplicator.cpp
│ │ ├── T140TextMatroskaFileServerMediaSubsession.cpp
│ │ ├── T140TextMatroskaFileServerMediaSubsession.hh
│ │ ├── T140TextRTPSink.cpp
│ │ ├── TCPStreamSink.cpp
│ │ ├── TextRTPSink.cpp
│ │ ├── uLawAudioFilter.cpp
│ │ ├── VideoRTPSink.cpp
│ │ ├── VorbisAudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── VorbisAudioMatroskaFileServerMediaSubsession.hh
│ │ ├── VorbisAudioRTPSink.cpp
│ │ ├── VorbisAudioRTPSource.cpp
│ │ ├── VP8VideoMatroskaFileServerMediaSubsession.cpp
│ │ ├── VP8VideoMatroskaFileServerMediaSubsession.hh
│ │ ├── VP8VideoRTPSink.cpp
│ │ ├── VP8VideoRTPSource.cpp
│ │ ├── WAVAudioFileServerMediaSubsession.cpp
│ │ └── WAVAudioFileSource.cpp
│ ├── ReadMe.txt
│ ├── stdafx.cpp
│ ├── stdafx.h
│ ├── targetver.h
│ ├── testOnDemandRTSPServer.cpp
│ ├── testProgs
│ │ ├── COPYING
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── MPEG2TransportStreamIndexer.cpp
│ │ ├── openRTSP.cpp
│ │ ├── playCommon.cpp
│ │ ├── playCommon.hh
│ │ ├── playSIP.cpp
│ │ ├── sapWatch.cpp
│ │ ├── testAMRAudioStreamer.cpp
│ │ ├── testDVVideoStreamer.cpp
│ │ ├── testGSMStreamer.cpp
│ │ ├── testH264VideoStreamer.cpp
│ │ ├── testH264VideoToTransportStream.cpp
│ │ ├── testMP3Receiver.cpp
│ │ ├── testMP3.sdp
│ │ ├── testMP3Streamer.cpp
│ │ ├── testMP3-using-ADUs.sdp
│ │ ├── testMPEG1or2AudioVideo.sdp
│ │ ├── testMPEG1or2AudioVideoStreamer.cpp
│ │ ├── testMPEG1or2AudioVideoToDarwin.cpp
│ │ ├── testMPEG1or2ProgramToTransportStream.cpp
│ │ ├── testMPEG1or2Splitter.cpp
│ │ ├── testMPEG1or2VideoReceiver.cpp
│ │ ├── testMPEG1or2Video.sdp
│ │ ├── testMPEG1or2VideoStreamer.cpp
│ │ ├── testMPEG2TransportReceiver.cpp
│ │ ├── testMPEG2Transport.sdp
│ │ ├── testMPEG2TransportStreamer.cpp
│ │ ├── testMPEG2TransportStreamTrickPlay.cpp
│ │ ├── testMPEG4VideoStreamer.cpp
│ │ ├── testMPEG4VideoToDarwin.cpp
│ │ ├── testOnDemandRTSPServer.cpp
│ │ ├── testRelay.cpp
│ │ ├── testReplicator.cpp
│ │ ├── testRTSPClient.cpp
│ │ ├── testWAVAudioStreamer.cpp
│ │ └── vobStreamer.cpp
│ └── UsageEnvironment
│ ├── COPYING
│ ├── HashTable.cpp
│ ├── include
│ │ ├── Boolean.hh
│ │ ├── HashTable.hh
│ │ ├── strDup.hh
│ │ ├── UsageEnvironment.hh
│ │ └── UsageEnvironment_version.hh
│ ├── Makefile.head
│ ├── Makefile.tail
│ ├── strDup.cpp
│ └── UsageEnvironment.cpp
├── live555test.sln
└── live555test.suo
14 directories, 409 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论