How can I record the screen as well as audio on Ubuntu?
That is for creating a video tutorial. I want the screen and my voice.
I have tried many recorder, but that only record the screen and internal video.
sound screen screencast desktop-recording sound-recorder
New contributor
add a comment |
That is for creating a video tutorial. I want the screen and my voice.
I have tried many recorder, but that only record the screen and internal video.
sound screen screencast desktop-recording sound-recorder
New contributor
add a comment |
That is for creating a video tutorial. I want the screen and my voice.
I have tried many recorder, but that only record the screen and internal video.
sound screen screencast desktop-recording sound-recorder
New contributor
That is for creating a video tutorial. I want the screen and my voice.
I have tried many recorder, but that only record the screen and internal video.
sound screen screencast desktop-recording sound-recorder
sound screen screencast desktop-recording sound-recorder
New contributor
New contributor
edited 9 hours ago
pomsky
30.6k1193127
30.6k1193127
New contributor
asked yesterday
Vidhya RajanVidhya Rajan
1
1
New contributor
New contributor
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
There is an application in the Official Ubuntu Software Repository callled Kazam, which works great. It will record internal sound, external sound, and the screen. It has pretty good video quality, as well. It can be installed with:
$ sudo apt-get install kazam
New contributor
add a comment |
You can use recordMyDesktop. It has the option to capture audio from your microphone. To install it run the following command in Terminal
sudo apt install gtk-recordmydesktop
Open recordMyDesktop and just check the box next to 'Sound Quality' before starting recording.
add a comment |
There are many many applications with which you can do that, The best one that I've used obs, You can install it by
sudo apt install obs-studio
As previously suggested you can also use kazam
sudo apt install kazam
Or if you don't want to install any application, you can use the already available ffmpeg
command, the following should work for you:
ffmpeg -f x11grab -s "Your screen resolution" -i :0.0 -f alsa -i default output.mkv
For the last one, I am assuming you're using alsa
!
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
add a comment |
A simple one is simplescreenrecorder which can be found in the 18.04 repo. Install it with
sudo apt install simplescreenrecorder
start it > Continue > choose size of screen to record > tick the box for audio. For Backend choose pulseaudio. For source choose built in audio analogue stereo
which would record the mic instead of the internal audio > choose save location and the default codec parameters should be ok
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Vidhya Rajan is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1116824%2fhow-can-i-record-the-screen-as-well-as-audio-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is an application in the Official Ubuntu Software Repository callled Kazam, which works great. It will record internal sound, external sound, and the screen. It has pretty good video quality, as well. It can be installed with:
$ sudo apt-get install kazam
New contributor
add a comment |
There is an application in the Official Ubuntu Software Repository callled Kazam, which works great. It will record internal sound, external sound, and the screen. It has pretty good video quality, as well. It can be installed with:
$ sudo apt-get install kazam
New contributor
add a comment |
There is an application in the Official Ubuntu Software Repository callled Kazam, which works great. It will record internal sound, external sound, and the screen. It has pretty good video quality, as well. It can be installed with:
$ sudo apt-get install kazam
New contributor
There is an application in the Official Ubuntu Software Repository callled Kazam, which works great. It will record internal sound, external sound, and the screen. It has pretty good video quality, as well. It can be installed with:
$ sudo apt-get install kazam
New contributor
edited yesterday
New contributor
answered yesterday
The MATE ManThe MATE Man
1914
1914
New contributor
New contributor
add a comment |
add a comment |
You can use recordMyDesktop. It has the option to capture audio from your microphone. To install it run the following command in Terminal
sudo apt install gtk-recordmydesktop
Open recordMyDesktop and just check the box next to 'Sound Quality' before starting recording.
add a comment |
You can use recordMyDesktop. It has the option to capture audio from your microphone. To install it run the following command in Terminal
sudo apt install gtk-recordmydesktop
Open recordMyDesktop and just check the box next to 'Sound Quality' before starting recording.
add a comment |
You can use recordMyDesktop. It has the option to capture audio from your microphone. To install it run the following command in Terminal
sudo apt install gtk-recordmydesktop
Open recordMyDesktop and just check the box next to 'Sound Quality' before starting recording.
You can use recordMyDesktop. It has the option to capture audio from your microphone. To install it run the following command in Terminal
sudo apt install gtk-recordmydesktop
Open recordMyDesktop and just check the box next to 'Sound Quality' before starting recording.
answered 9 hours ago
pomskypomsky
30.6k1193127
30.6k1193127
add a comment |
add a comment |
There are many many applications with which you can do that, The best one that I've used obs, You can install it by
sudo apt install obs-studio
As previously suggested you can also use kazam
sudo apt install kazam
Or if you don't want to install any application, you can use the already available ffmpeg
command, the following should work for you:
ffmpeg -f x11grab -s "Your screen resolution" -i :0.0 -f alsa -i default output.mkv
For the last one, I am assuming you're using alsa
!
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
add a comment |
There are many many applications with which you can do that, The best one that I've used obs, You can install it by
sudo apt install obs-studio
As previously suggested you can also use kazam
sudo apt install kazam
Or if you don't want to install any application, you can use the already available ffmpeg
command, the following should work for you:
ffmpeg -f x11grab -s "Your screen resolution" -i :0.0 -f alsa -i default output.mkv
For the last one, I am assuming you're using alsa
!
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
add a comment |
There are many many applications with which you can do that, The best one that I've used obs, You can install it by
sudo apt install obs-studio
As previously suggested you can also use kazam
sudo apt install kazam
Or if you don't want to install any application, you can use the already available ffmpeg
command, the following should work for you:
ffmpeg -f x11grab -s "Your screen resolution" -i :0.0 -f alsa -i default output.mkv
For the last one, I am assuming you're using alsa
!
There are many many applications with which you can do that, The best one that I've used obs, You can install it by
sudo apt install obs-studio
As previously suggested you can also use kazam
sudo apt install kazam
Or if you don't want to install any application, you can use the already available ffmpeg
command, the following should work for you:
ffmpeg -f x11grab -s "Your screen resolution" -i :0.0 -f alsa -i default output.mkv
For the last one, I am assuming you're using alsa
!
edited 9 hours ago
pomsky
30.6k1193127
30.6k1193127
answered yesterday
Nauman AfsarNauman Afsar
3315
3315
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
add a comment |
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
6 hours ago
add a comment |
A simple one is simplescreenrecorder which can be found in the 18.04 repo. Install it with
sudo apt install simplescreenrecorder
start it > Continue > choose size of screen to record > tick the box for audio. For Backend choose pulseaudio. For source choose built in audio analogue stereo
which would record the mic instead of the internal audio > choose save location and the default codec parameters should be ok
add a comment |
A simple one is simplescreenrecorder which can be found in the 18.04 repo. Install it with
sudo apt install simplescreenrecorder
start it > Continue > choose size of screen to record > tick the box for audio. For Backend choose pulseaudio. For source choose built in audio analogue stereo
which would record the mic instead of the internal audio > choose save location and the default codec parameters should be ok
add a comment |
A simple one is simplescreenrecorder which can be found in the 18.04 repo. Install it with
sudo apt install simplescreenrecorder
start it > Continue > choose size of screen to record > tick the box for audio. For Backend choose pulseaudio. For source choose built in audio analogue stereo
which would record the mic instead of the internal audio > choose save location and the default codec parameters should be ok
A simple one is simplescreenrecorder which can be found in the 18.04 repo. Install it with
sudo apt install simplescreenrecorder
start it > Continue > choose size of screen to record > tick the box for audio. For Backend choose pulseaudio. For source choose built in audio analogue stereo
which would record the mic instead of the internal audio > choose save location and the default codec parameters should be ok
answered 6 hours ago
ptetteh227ptetteh227
958219
958219
add a comment |
add a comment |
Vidhya Rajan is a new contributor. Be nice, and check out our Code of Conduct.
Vidhya Rajan is a new contributor. Be nice, and check out our Code of Conduct.
Vidhya Rajan is a new contributor. Be nice, and check out our Code of Conduct.
Vidhya Rajan is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1116824%2fhow-can-i-record-the-screen-as-well-as-audio-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown