Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
ispysoftware pushed 1 commit to Optimise ispysoftware/sipsorcery
- Fix rounding bug in SendAudioFrame Fix bug where duplicate durations were being added to local track timestamp in Sen... ebc9a43
ispysoftware created a review comment on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
@ha-ves I added some changes locally to further improve matters with VP8 ``` else if ((_codecID == AVCodecID.AV_CODEC_ID_VP8) || (_codecID == AVCodecID.AV_CODEC_ID_VP9)) { av_opt_set(_en...
ispysoftware created a review on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
@sipsorcery Is SetVideoEncoderBitrate supposed to be called automagically via some feedback/ stream monitoring/ webrtc mechanism?
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
OK I've been looking into this some more - the code to select the profile definitely needs to be expanded beyond first match. When it's using VP8 it works ok as VP8 is very forgiving but uses a lo...
ispysoftware created a review comment on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
absolutely - do what you want with it
ispysoftware created a review on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
ispysoftware created a review comment on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
Using VP8 here with the original code I just got a garbled mess of blocks - my version of this library is heavily modified and i added this code to fix issues i was having. I'm not using this libra...
ispysoftware created a review on a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
ispysoftware opened a pull request on sipsorcery-org/SIPSorceryMedia.FFmpeg
Configure encoder to match client
Match h264 encoder to fmtp parameters from client Setup VP8 encoder bitstream parameters for streaming resolutionispysoftware pushed 1 commit to master ispysoftware/SIPSorceryMedia.FFmpeg
- Match h264 encoder to fmtp parameters from client Setup VP8 encoder bitstream parameters for streaming resolution ef21fcf
ispysoftware created a comment on a pull request on sipsorcery-org/sipsorcery
If that were to happen then the codec would need to be reinitialized which isn't currently happening in the rest of the code base. If it switched to VP8 from H264 for example it'd just send H264 fr...
ispysoftware pushed 1 commit to main ispysoftware/agent-install-scripts
- Update macos_setup.sh fix folder ownership issue b1347df
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
This AreMatch method in \net\SDP\SDPAudioVideoMediaFormat.cs shouldn't be comparing the ID's ``` if (format1.ID < DYNAMIC_ID_MIN && format1.ID == format2.ID && ...
ispysoftware created a review comment on a pull request on sipsorcery-org/sipsorcery
Agreed - pushed an update
ispysoftware pushed 1 commit to Optimise ispysoftware/sipsorcery
- Move gather timeout to config 52076bc
ispysoftware opened a pull request on sipsorcery-org/sipsorcery
Optimise SendingFormat, Timeout on Wait and Fix bug in g722
Only get SendingFormat once Add sanity check for ICE Gathering timeout Fix bug in g722 codecispysoftware pushed 3 commits to Optimise ispysoftware/sipsorcery
ispysoftware pushed 1 commit to Optimise ispysoftware/sipsorcery
- Optimise SendVideo and SendAudio (only get SendingFormat once) Add sanity check for ICE Gathering timeout 8e7b251
ispysoftware created a branch on ispysoftware/sipsorcery
Optimise - A WebRTC, SIP and VoIP library for C# and .NET. Designed for real-time communications apps.
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
Also, and it might be related, I think there's some weirdness going on with the matching of the streams. If I edit the SDP offer before it gets sent by Firefox to put H264 first (using codecshelpe...
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
well.. i mean, i did solve it up the top there ^^ VP8 on my computer uses about 11% CPU, H264 uses around 0.2% CPU so it's quite important to use H264 if at all possible
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
Yeah I'm doing that, I have ``` internal static List<VideoFormat> GetSupportedVideoFormats() => new List<VideoFormat> { new VideoFormat( VideoCodecsEnum.H264, H264_F...
ispysoftware created a comment on an issue on sipsorcery-org/sipsorcery
Right but won't that fail if the client doesn't support h264?
ispysoftware pushed 1 commit to master ispysoftware/sipsorcery
- Only get stream format once Add timeout to ice gathering Add prefer H264 flag for compatible formats de318f6