Come funziona l'applicazione registratore di schermo in Android?
L'applicazione Android Recorder usa due classi:-
i). MediaRecorder
ii). MediaPlayer
Android ha un microfono incorporato attraverso il quale è possibile catturare l'audio e memorizzarlo, o riprodurlo nel tuo telefono. Ci sono molti modi per farlo, ma il modo più comune è attraverso la classe MediaRecorder.
Android fornisce la classe MediaRecorder per registrare audio o video. Per utilizzare la classe MediaRecorder, dovrete prima creare un'istanza della classe MediaRecorder. Its syntax is given below.
- MediaRecorder myAudioRecorder = new MediaRecorder();
Now you will set the source , output and encoding format and output file. Their syntax is given below.
- myAudioRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
- myAudioRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
- myAudioRecorder.setAudioEncoder(MediaRecorder.OutputFormat.AMR_NB);
- myAudioRecorder.setOutputFile(outputFile);
After specifying the audio source and format and its output file, we can then call the two basic methods prepare and start to start recording the audio.
- myAudioRecorder.prepare();
- myAudioRecorder.start();
So if you also want to implement and create an app for such you can go through this link:-
Android Audio Capture Tutorial
Also in order to learn more about media recorder app search for there tutorials.
Also would like to get into your notice that to build a media recorder app is very easy and simple.
<- Piece Of Advice->
Try to develop a very beautiful UI/UX for the same. It will give a good kickstart to your app.
Hope, you would have liked this information and also you develop your app quickly.
Please Upvote and maybe follow.
Thanks!
Articoli simili
- Qual è il miglior registratore di schermo per uno smartphone Android per caricare video su YouTube?
- Come registrare una videochiamata con il registratore dello schermo incorporato di un iPhone
- Quale registratore di schermo usano gli YouTubers?
- Qual è il miglior registratore di schermo con facecam e registrazione audio per un video su YouTube?