Easy Sound Recorder
A simple sound recording app implementing Material Design.
Screenshots:
Credits / Libraries used:
https://github.com/makovkastar/FloatingActionButton
A simple sound recording app implementing Material Design.
Screenshots:
Credits / Libraries used:
https://github.com/makovkastar/FloatingActionButton
This one: https://play.google.com/store/apps/details?id=com.ssaurel.audiorecorder&hl=en
I don't know the internal workings with the MIT License, but this guy has copied several apps, just added advertisements and posted it to the play store.
Hey @dkim0419,
thanks for the current update of SoundRecorder. I highly appreciate this!
There's a number of open PR that request for new features (#35, #3, #57 ) that call for adding corresponding settings (which is even requested in #8). I'm wondering what the future direction of the app would be. Would you aim for adding settings or would you prefer that there is only one standard setting. In #37 you pointed out you would rather keep it single. If that's the case, wouldn't it make sense to document this plan, e.g. in the README.md and to close the related issues?
Hi @dkim0419
I found this app on the Google Play Store. This guys just took the source code, added some ads and put it on the Google Play Store...
As you are the owner of the source code, feel free to open a request to google here, if it's your wish ;)
Don't forget to tell Google that:
Just in case you're not aware of, please take a look here. Especially at the line stating the package name. Looks like it's a clone of your project, no credits given in its description. The clone is even available at the playstore – no credits there either.
It has been almost two years since the last update, and there's no moving here since January (you have a life, I'm not criticising it, quite the opposite, the app is great) but I think an update with what's already done would be nice.
Hi, I created string.xml for South Korea I confirm PR history and test my smart phone before pull requset. but if exist any wrong form, comment please~ Thank you!! :)
Hi, I'd like to translate your app into Italian and Esperanto but I don't know how to do that. Could someone explain it in a "How to contribute" section of README.md? Thank you very much!
I'm not able to sync Gradle. The error is Unknown host 'downloads.gradle.org' You may need to adjust proxy settings in Gradle. I'm not using any proxies. I've tried changing proxy settings to auto detect still, it didn't help.
Hi @dkim0419, As there is a number of open Issues I was wondering what your future plans with the app are. Are you planning to develop it further? Are you interested in incorporating the suggested features or should this app remain simple without any settings? Do you see this app more as a Voice recorder (=focus on recording low quality, low size audio files) or as a Music recorder (=focus on recording high quality, bigger size files) or generic (=can do both things, settings needed).
I use it to record music in high quality using an external microphone. However, I needed to tweak it a little to fit to my needs. For me it's currently the best open source app available. I used to like Rehearsal Assistant, but that seems not to be developed any further.
On my Motorola Moto E the app records with a sample rate of 8000 Hz which is too low quality for me. @dkim0419 what do you think of increasing the standard quality to 44100 Hz (CD quality). This will of course create bigger files. Maybe, it could become a setting?
I love the design of this recorder. However, it's hard to do things with the audio files once I've recorded then because there seems not to be a way to share them to an external app.
I'd expect this option to apear when long-pressing a recording.
I'm Developing new application which records audio from digital stethoscope to mobile app. there are 2 ways to connect stethoscope to mobile.
1.AUX to AUX 2.Aux to USB
mediaRecorder = new MediaRecorder();
mediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mediaRecorder.setAudioEncodingBitRate(16*44100);
mediaRecorder.setAudioSamplingRate(44100);
mediaRecorder.setMaxDuration((int) TimeUnit.SECONDS.toMillis(30L));
mediaRecorder.setOutputFile(AudioSavePathInDevice);
mediaRecorder.prepare();
mediaRecorder.start();```
But AUX to Aux not working in some device.AUX to USB recorded voice having poor quality.
Note : How to disable builtin mic when headphone is connected.
I wanna use your open source, but my android studio version is 3.6.1 So If i add this source in my android studio project then, Can I use it on my computer? Thank you!
NewsFly NewsFly is a modern news android application which features virtually ALL recent and recommended android development tech stack and tools used
Weather Forecast App The simple app is to demonstrate how the modern Enterprise Android App Architecture should be. Clean Architecture (Mr Uncle Bob)
UniversityApp This is a simple application through which I connected Students, Courses and Teachers in an a beautiful way. The main purpose of this pr
Simple DETEKT implementation others KTLint DeteKT Spotless gradle-code-quality-tools-plugin Tutorials medium Config detekt config.yml Gradle Build Scr
MyCurrencyConverter A simple project used for converting currencies. This project is divided into 2 parts (branches): master - without Dagger Hilt dev
GitHub Users Search Android application to search users via GitHub API Project demonstrates how to use Kotlin, Android Architecture Components, Dagger
DataBinding Android view data binding made simple! A more user friendly docu is coming! This library doesn't use any external library, so it's light w
Behind the Scenes - DevByte Viewer App This is the toy app for Lesson 9 of the Android App Development in Kotlin course on Udacity. DevByte DevByte Vi
garden-shed eCommerce app developed with Android Jetpack and Kotlin This is my first mobile application. Garden Shed is a simple application for buyin
Getting-Started-with-Android-Studio-and-Kotlin-CAC-Webinar A webinar hosted by the Congressional App Challenge and theCoderSchool The code for the Con
LoadApp This is my submission for the "Building an Advanced Android App" project of the Udacity Android Kotlin Developer nanodegree. (C) Jaldhar H. Vy
Otopost An app to manage posts such as create, update, show the post list and detail also delete the post. Minimum Requirements Software Android Studi
Bus Scheduler App This folder contains the source code for the Bus Scheduler app codelab. Introduction The Bus Scheduler app displays a list of bus st
Room - SleepQualityTracker app This is the toy app for Lesson 6 of the Android App Development in Kotlin course on Udacity. SleepQualityTracker The Sl
MVI Architecture Android Beginners: Sample App This repository contains a sample app that implements MVI architecture using Kotlin, ViewModel, LiveDat
Trackr Event Trackr Android app. Allows users to track birthdays and anniversaries of friends and family. You need to open this project in Android Stu
A sample app that demonstrate how to build an Android application using the Uncle Bob's Clean Architecture approach
Picsum Photo App Functionality The app's functionality includes: Fetch a list of images from picsum photos api (https://picsum.photos/) and show them
The code below was taken from a PeopleCode app package to be used as a refactoring exercise. Packages original: contains the code below translated int