H0201030 / record-rtc-together

Record video and audio together on the web using getUserMedia
66 stars 8 forks source link

Output video has got some issues after changing the html VIDEO element's size. #3

Closed harshadura closed 11 years ago

harshadura commented 11 years ago

Hi,

I have small issue. The default size (640x480) of the

Here are the screenshots: [1] http://imagebin.org/268368 [2] http://imagebin.org/268367

Could you please advice me how to resolve this issue.

Thank you.

zhuochun commented 11 years ago

You can pass in the video size as options:

        recorder = new RecordRTC({
            enable: constraints,
            videoElem: document.getElementById("client-video"),
            video_width: 320,
            video_height: 240
        });
harshadura commented 11 years ago

Hi Wang,

I tried your solution mentioned above but the issue still persist. Could you please look into it.

Thanks.

zhuochun commented 11 years ago

I just updated the code. Can you download the new version and test again? It should be fixed now.

harshadura commented 11 years ago

That solved the issue. Thank you very much Wang!