mediarecorder Questions
2
I'm building a screen recorder plugin for chrome store. I'm adding microphone's audio track to the media stream that contains (Screen's video track + System audio track). So final stream contain 2 ...
Highbred asked 6/9, 2017 at 11:39
1
Solved
I have code that records the stream of a video manipulated and displayed on a canvas element and combines it with the AudioContext stream of the same video to give it sound.
It works 100% of the ti...
Loferski asked 23/8, 2023 at 1:42
1
Solved
I have a website (Angular 15 & Ionic 6) where a user uploads a video, then I apply some alterations to it on a canvas, capture the canvas stream, and output to a file
I first create a MediaStre...
Bennir asked 15/8, 2023 at 23:3
1
I am recording video by MediaRecorder in Chrome. My code is similar to an example from MediaStream docs. I am receiving videos that do not have Duration metadata.
I compared it by mediainfo with ex...
Deplete asked 28/8, 2020 at 20:16
1
I've built a Chrome extension that captures screen activity and microphone input and outputs a video file. Since chrome.desktopCapture can't record audio input alongside screen capture, I'm getting...
Outcross asked 26/6, 2018 at 12:25
4
Solved
I have this error. Can somebody please help me, I think it's something about touch listener... The error is happening when I release my finger.
04-25 20:07:00.263: D/FB Sessions(18429): false
04-2...
Burrstone asked 25/4, 2013 at 18:17
1
I am using webrtc for video calling in android. I am simultaneously screen recording after call is connected in sender end. I am getting this error log in sender end. Receiver end voice is not hear...
Fionafionna asked 29/6, 2020 at 8:16
4
Solved
I'm using MediaRecorder() with getUserMedia() to record audio data from the browser. It works, but recorded data is recorded in the Blob format. I want to get raw audio data (amplitudes), not the B...
Grandam asked 7/4, 2020 at 20:42
5
Solved
I'm working on a website using nodejs and SailsJs.
My objective is send the blobs generated by MediaRecorder.ondataavailable event (which returns small blobs) to the server and after finishing rec...
Recrudesce asked 6/10, 2018 at 15:27
3
I'm attempting to access the user's webcam/phone camera to record a video and mix audio in (imagine TikTok). So the user would press record, the audio would play (for the user to time their dance o...
Enzyme asked 25/4, 2020 at 17:36
3
Solved
I wrote a code to record audio of call conversation using MediaRecorder.
how can i know whether a MediaRecorder is in running state or not, to stop the recording.
like
boolean running;
MediaReco...
Sarinasarine asked 11/8, 2010 at 13:16
2
I wanted to record Laptop's webcam video stream on safari browser.
I am accessing the stream on browser by using MediaDevices.getUserMedia().
It seems MediaRecorder interface will do the trick (h...
Asha asked 19/4, 2017 at 23:44
2
I would like to generate a video. I am using MediaRecorder to record a track generated by MediaStreamTrackGenerator.
Generating each frame takes some time, let's say 1 second, and I would like to g...
Tseng asked 20/6, 2022 at 21:17
0
I am using MediaRecorder to record the Microphone audio on a website.
Javascript:
var blob;
var blob_url;
var stream;
var recorder;
var chunks;
var media = {
tag: 'audio',
type: 'audio/ogg',
ex...
Underwing asked 8/12, 2021 at 10:36
4
Solved
I am using this code. I need to merge two videos. It saved all videos in temp folder but not in merged condition. Append and DoAppend are my functions which I want for merging the videos.
public S...
Dreddy asked 4/2, 2014 at 12:22
3
Solved
MediaRecorder.isTypeSupported('video/mp4') is false in Chrome. So I found MediaStreamRecorder https://github.com/streamproc/MediaStreamRecorder then I did
var recorder = new MediaStreamRecorder(st...
Reta asked 17/2, 2017 at 18:9
2
Solved
I try to record video using MediaRecorder Class.
However I find out that I failed to lower the framerate of the video stream.
I'm using H.264 as my Video Encoder and AAC as my Audio Encoder(yes, ...
Scat asked 23/3, 2011 at 14:53
4
Is there a way to ask an Android device what audio and video Codecs it supports for encoding?
I found devices that do not support some of the codecs listed as mandatory in
http://developer.android...
Stalder asked 3/8, 2012 at 7:48
5
Solved
I'm looking at the class MediaRecorder of the Android SDK, and I was wondering if it can be used to record a video made from a Surface.
Example: I want to record what I display on my surface (a vid...
Braided asked 4/12, 2012 at 22:52
4
Solved
I have a problem in recording a call I have made a service and called a BroadcastReceiver to get the call state. In TelephonyManager.EXTRA_STATE_OFFHOOK when the call is received. I am using follow...
Lanthanum asked 10/6, 2014 at 11:0
6
Solved
I am recording video with MediaRecorder. My code works fine on 2.3.3 but fails on 4.0.3.
The issue is following: the code mediaRecorder.stop() throws the RuntimeExeption
java.lang.RuntimeExceptio...
Idalla asked 5/4, 2013 at 12:14
2
I'm currently developing an Android App for slow-motion recording using this project as an example. I've tried this App with a ZTE BLADE L5 PLUS (Android 5.0) and it worked just fine, but since I n...
Spat asked 7/11, 2018 at 10:45
1
Solved
If i use the following code to record a canvas animation:
streamInput = parent.document.getElementById('whiteboard');
stream = streamInput.captureStream();
const recorder = RecordRTC(stream, {
...
Allanadale asked 29/1, 2021 at 12:21
2
Solved
I need to design a app.That when Record the Video through Camera,Show and Record the SystemTimeStamp above the Video.
Can it work with current Android Frameworks?
If can, How can i do this?
Thanks ...
Ardolino asked 23/9, 2013 at 9:17
2
I'm having an issue getting a captured blob from the mediaRecorder api to playback in Chrome (it works in Firefox). Not sure if it's a bug in Chrome.
The error it reports:
undefined:1 Uncaught...
Lieberman asked 26/2, 2016 at 10:43
1 Next >
© 2022 - 2025 — McMap. All rights reserved.