}
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/44a11a7e-304b-4807-9fe0-61614200e0bd%40googlegroups.com.--
---
You received this message because you are subscribed to a topic in the Google Groups "discuss-webrtc" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/discuss-webrtc/u2N11tBxlOw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to discuss-webrt...@googlegroups.com.
video: {
mandatory: {
width: { min: 160 },
height: { min: 120 }
},
optional: [
{ width: { min: 160 }},
{ frameRate: 10 },
{ quality: 10 },
{ facingMode: "user" }
]
}
How can I reduce size?
--
---
You received this message because you are subscribed to a topic in the Google Groups "discuss-webrtc" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/discuss-webrtc/u2N11tBxlOw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to discuss-webrt...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/7661b7fd-cee1-4bd3-9222-d5589ee3dd91%40googlegroups.com.
On Wednesday, June 10, 2015 at 8:58:34 PM UTC+5:30, Tarun Tyagi wrote:I have been implementing video interview using WebRTC.
function OnSuccess(stream) {multiStreamRecorder = new MultiStreamRecorder(stream);
It is producing 800KB audio file and 600KB video files after every 5 seconds.
Which means 1.4MB per 5 seconds. This is too much in size to upload on HTTP server.
How we can reduce the size to upload the video/audio files fast?
-- Randell Jesup randel...@jesup.org