From 886e77544c4bd4cd508e354bab2a4bb1c0002ab2 Mon Sep 17 00:00:00 2001 From: Muaz Khan Date: Fri, 10 Feb 2017 10:02:20 +0500 Subject: [PATCH] tinny fixes. --- README.md | 4 ++-- .../{conference.html => multi-cameras-recording.html} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename simple-demos/{conference.html => multi-cameras-recording.html} (100%) diff --git a/README.md b/README.md index b53fc808..1eb05b98 100644 --- a/README.md +++ b/README.md @@ -254,8 +254,8 @@ var recordRTC = RecordRTC(arrayOfStreams, { } }); recordRTC.startRecording(); -recordRTC.stopRecording(function(audioURL) { - audio.src = audioURL; +recordRTC.stopRecording(function(singleWebM) { + video.src = singleWebM; var recordedBlob = recordRTC.getBlob(); recordRTC.getDataURL(function(dataURL) { }); diff --git a/simple-demos/conference.html b/simple-demos/multi-cameras-recording.html similarity index 100% rename from simple-demos/conference.html rename to simple-demos/multi-cameras-recording.html