How can I record the screen as well as audio on Ubuntu?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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
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
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
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
edited Feb 9 at 19:12
pomsky
33.2k11104136
33.2k11104136
asked Feb 9 at 2:09
Vidhya RajanVidhya Rajan
61
61
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
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
Feb 9 at 22:06
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 |
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 |
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
});
}
});
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
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
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
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
edited Feb 9 at 2:34
answered Feb 9 at 2:11
The MATE ManThe MATE Man
8918
8918
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
Feb 9 at 22:06
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
Feb 9 at 22:06
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 Feb 9 at 19:11
pomsky
33.2k11104136
33.2k11104136
answered Feb 9 at 3:40
Nauman AfsarNauman Afsar
64111
64111
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
Feb 9 at 22:06
add a comment |
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
Feb 9 at 22:06
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
Feb 9 at 22:06
I was going to mention OBSProject - I wasn't aware it is in the repositories, though!
– Charles Green
Feb 9 at 22:06
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 Feb 9 at 22:02
ptetteh227ptetteh227
1,033319
1,033319
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 Feb 9 at 19:11
pomskypomsky
33.2k11104136
33.2k11104136
add a comment |
add a comment |
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