Click here to Skip to main content
15,899,475 members
Everything / Recorder

Recorder

recorder

Great Reads

by S.Prateek
This is a basic how-to guideline to record audio in Windows Phone 8.1

Latest Articles

by S.Prateek
This is a basic how-to guideline to record audio in Windows Phone 8.1

All Articles

Sort by Score

Recorder 

9 Oct 2018 by Shivangi Rawat
Hi, I am using WinAppDriver UiRecorder for identifying and recording the controls in my desktop application.I have been able to identify controls belonging to C#,VB.NET, but I observe for Java Application controls are not being identified. Could someone please help me on this. I would like to...
25 Dec 2013 by CPallini
Possibly this Code Project article will help you: "Creating a Sound Recorder in C and C#"[^].
7 Sep 2015 by Dave Kreskowiak
Google for "javascript sound recorder". Keep in mind that browsers typically run code in a sandbox environment and access to the client machine hardware, including the microphone (if there is one), is heavily restricted. By default, your code will not have access to it. There is nothing you can...
7 Sep 2015 by Sergey Alexandrovich Kryukov
First question is completely unclear. "Gives then name" could be anything, but it may sounds like you wanted to recognize the music piece by the audio record and identify it in some hypothetical database. If so, you need to understand that it would be extremely advanced and complicated...
26 Mar 2016 by Sergey Alexandrovich Kryukov
Please see my article Practical Sound Recorder with Sound Activation[^].It is not a UWP but is in WPF, but it doesn't matter, because its audio part is tiny, clearly written in a separate file and class and can be used anywhere where you can use legacy Windows API. Actually, this part of API...
10 Oct 2018 by Yossi Maoz
Hi,I'm looking for some software that can record my screen as a video.There are many options but I have some specific needs and I haven't found something that fits.What I need is:1) API that I can use from .Net. I need the ability to control the software from my code - including...
22 Feb 2013 by surbob
Hi , I am creating an audio file in the server with exported blob data from Recorder.js steps I have done: 1. recorded audio in chrome using recorder.js and recorderWorker.js 2.blob data is converted to base64 data. 3.I created .wav file in the controller with data .Here data is...
13 Mar 2013 by Sergey Alexandrovich Kryukov
I hate to tell you that, but in general case this is absolutely impossible. My comment to the question should give you some hint.However, you can cover some special simple cases, maybe for some specific sites. For example, if the pages contain background music or just downloadable audio...
20 Mar 2013 by yasser hosny
Is there any way to recover rows which had not been inserted into a specified table due to 'Cannot insert duplicate identity column' error.Can I recover these rows from log file .ldf.Tools used: Sql Server 2008, DB with Recovery Model: Full
20 Mar 2013 by Sandeep Mewara
Is there any way to recover rows which had not been inserted into a specified table due to 'Cannot insert duplicate identity column' error.No. Data was not saved and error was raised. There would be no way to recover any data that was not persisted because of the error condition.
23 May 2013 by Amey K Bhatkar
This is the MSDN articular might help you.http://msdn.microsoft.com/en-us/library/ff827802.aspx[^]
14 Nov 2013 by xchris00
HelloI’m really new in java programming. I’m trying to build an android application that will be enabled by NFC, record sound (during sleep) continuously (in separated files of 1-2 minutes length and then start a new recording file), uploading each one of them (right after it’s recorded) on...
30 Nov 2013 by xchris00
Hello thereI'm a newbie in programming and I wanna build a sound recording application.I have this code which is recording sound and puts a timestamp :package com.tsop.tsp_recorder;import android.R.layout;import android.app.Activity;import...
1 Dec 2013 by ExcelledProducts CEO
public class SoundMeter { private MediaRecorder mRecorder = null; public void start() { if (mRecorder == null) { mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC); ...
5 May 2014 by Pavan Kumar
I am working on Desktop Application which requires me to connect to webcam(s) and record(save) the video in MPEG, AVI, MP4 and WMV formats and Burn into the CD/DVD. The application is in Win Forms. I am not interested in Web Based Flash/Silver light solutions I am only interested in free or open...
5 May 2014 by Dave Kreskowiak
AVIWriter writes uncompressed full frame video. Use the VideoFileWriter[^] class instead.
21 May 2014 by Pavan Kumar
While recording video by ffmpeg VideoFileWriter class, i am getting error like 'A video file was not opened yet'here is my code : private void butStart_Click(object sender, EventArgs e) { try { FinalVideo = new...
11 Apr 2016 by Pavan Kumar
Is there any 64 bit ffmpeg.dlls & Builds. I am working on 64 bit system i cont change it to the 86 bit due to my project needs. Can any one help how can i use ffmpeg libraries in 64 bit system. When i am running it in 64 bit target platform i am getting errors like "Could not load file or...
29 May 2014 by Pheonyx
http://stackoverflow.com/quest...
27 Sep 2014 by Member 11112880
Hi! I am new in c# and i have an project which is recording a video via my webcam and save it. But i don't know how to do this in c# programming language. By the way thanks for help.
27 Sep 2014 by LLLLGGGG
https://www.google.it/search?q...
21 Nov 2014 by Redgum
If you real question is how to get around using a proprietary 3rd party SDK for your IP camera (that may or may not cost money to get your hands on,) then I'd try using something open-source, like the AForge framework: https://code.google.com/p/aforge/[^]Otherwise, yes. You will need to...
25 Dec 2014 by Syed Rizwan Haider
Im using a webcam to show live stream, capture images, record video etc using AForge library.Each time I get a new frame, I assign it to a pictureBox to show the live stream and i have added a toolstrip for recording video when it is checked. so i did it in the same following...
12 Sep 2016 by Mansi.Shah27
I am using MediaRecorder to record audio in Xamarin Android. I want to add Pause and Resume functionality to this. MediaRecorder does not have built in methods to Pause and Resume the recording. How can I accomplish this? Do I need to store separate audio files when Paused and merge them in a...
12 Sep 2016 by Darren_vms
At api 24 it does MediaRecorder | Android Developers[^] not sure if that helps....You would have to stop and start and merge the files, here is an implementation of just that for android GitHub - lassana/continuous-audiorecorder: Implementation of the missing feature in Android SDK: audio...
27 Sep 2016 by ulungss
sample i hava 2 datagridview :Dgv1 & Dgv2i send value from Dgv1 to Dgv2 with 3 coloumnCode like this :foreach (DataGridViewRow row in Dgv1.Rows) { // if DGV1 not string empty if (row.Cells[0].FormattedValue != string.Empty |...
29 Nov 2017 by Richard MacCutchan
Sound api c# - Google Search[^]
16 May 2023 by joaoandrebs
I need to create a routine download of some databases that come from the internet (company system), but when downloading I need to perform some manipulations on the files and always save to a fixed network address (overwrite the old ones) How do...
6 Nov 2023 by Maciej Los
Quote: when downloading I need to perform some manipulations You can't! You need to: - download[^] a file on local computer, - perform some calculations, - save file to fixed network address. See: import urllib.request...
3 Nov 2014 by S.Prateek
This is a basic how-to guideline to record audio in Windows Phone 8.1
25 Dec 2013 by Srini_12
After a big search i found voice recording is not possible in asp.net 4 web application.using plugin like flash we can achieve the same. can anyone share the code .net voice record and play using flash player.or if any other alternate good way to achieve this? kindly share the code.
16 Nov 2014 by BaumHard920
I'm newbie here, but I need some help. I need to build an application for my Foscam IP camera.I found an interesting article on xyz.com: How to create USB webcam / IP camera recorder to capture and save video (C# WPF)[^]. This aroused my attention, but so far I am unable to find out how to...
10 Oct 2018 by raddevus
I have and use Amazon.com: Movavi Screen Capture & Video Editor 9 Personal Edition [Download]: Software[^] I have version 8 and it is really fantastic. You can make and edit videos very easy and only $59.95. Compare that to $299 that Camtasia studio wants. Not sure if you can control it via API.
26 Mar 2016 by Member 12416797
Hi guys, i'm trying to develop call reorder app for windows 10 using UWP platform. But i stucked on audio capture. Tell me plz using what technology i can figure it out.What I have tried:I read about Naudio, but it semms that it doesn't work well with UWP. Also i tryed to use...
19 Nov 2012 by Sunil Tiwari
This would be better to build in two different application. first should capture the screen as image and save on network path and second should create video frames from image.
13 Mar 2013 by velvet7
Hi,I would like to record a specific website's audio output.Now here is how it should look like:I open a website (maybe .NET WebBroswer class?), and I can record that site's audio output, so I can navigate to other site's while it's recording, and then I could play it back.Imagine it...
25 Dec 2013 by Member 9581817
I have been searching for ways of recording Audio coming in from Line in with no success.
25 Dec 2013 by Member 10469753
Hy . pleas see the below link . http://www.dotnetspider.com/resources/4967-How-record-voice-from-microphone.aspx[^]
19 Feb 2014 by agent_kruger
how to add text to a specific position in a video in c# win. form?
9 Dec 2012 by dimaba10000
I have a video screen capturing program in vb.net, after recording i get huge files (2/3 gigs after recording for couple seconds)... Can someone help me out one how to add/ encrypt codecs so it will take the video and same time while recording decrypt the video and will change its size. ?
26 Apr 2013 by BlitzCoder
Hi,I have seen a lot of programs/solutions that enable us to record the sound input from a microphone.I would like to record this and also the sound that is output to speaker/headphones.Like suppose we are in an audio chat with a person, I want to record the conversation between...
11 Nov 2014 by PatientCarePro
If this issue is still relevant, I can recommend you to study this video guide: C# camera tutorial #6 - Recording video[^]After watching the video you will see that first you need to create connection between your camera and the application. After this you need to implement the recording...
7 Sep 2015 by Member 11966486
i have asp.net mvc app which check given song (recorded sample of song) and gives the name of it.I need to make sound recorder which will record song via browser, and to send it to my app and my app to return the name of the song.Any ideas ?