How do I remove all metadata from a WebM file?
I've tried using ffmpeg, but it seems to keep all the metadata I'm actively looking to remove.
I'm looking to remove ALL metadata, including length, bitrate, etc.
Before you say this isn't possible, yes it is, and I have multiple files that have what I'm looking to do. The files without metadata are still fully playable.
Example of what I want to do:
I've also tried exiftool
but it doesn't work with WebMs.
I tried the solution here and it didn't work. The output of ffmpeg on one of the WEBMs without metadata is:
ffmpeg metadata exif webm
|
show 1 more comment
I've tried using ffmpeg, but it seems to keep all the metadata I'm actively looking to remove.
I'm looking to remove ALL metadata, including length, bitrate, etc.
Before you say this isn't possible, yes it is, and I have multiple files that have what I'm looking to do. The files without metadata are still fully playable.
Example of what I want to do:
I've also tried exiftool
but it doesn't work with WebMs.
I tried the solution here and it didn't work. The output of ffmpeg on one of the WEBMs without metadata is:
ffmpeg metadata exif webm
1
What did you try with ffmpeg? Share the output offfmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39
|
show 1 more comment
I've tried using ffmpeg, but it seems to keep all the metadata I'm actively looking to remove.
I'm looking to remove ALL metadata, including length, bitrate, etc.
Before you say this isn't possible, yes it is, and I have multiple files that have what I'm looking to do. The files without metadata are still fully playable.
Example of what I want to do:
I've also tried exiftool
but it doesn't work with WebMs.
I tried the solution here and it didn't work. The output of ffmpeg on one of the WEBMs without metadata is:
ffmpeg metadata exif webm
I've tried using ffmpeg, but it seems to keep all the metadata I'm actively looking to remove.
I'm looking to remove ALL metadata, including length, bitrate, etc.
Before you say this isn't possible, yes it is, and I have multiple files that have what I'm looking to do. The files without metadata are still fully playable.
Example of what I want to do:
I've also tried exiftool
but it doesn't work with WebMs.
I tried the solution here and it didn't work. The output of ffmpeg on one of the WEBMs without metadata is:
ffmpeg metadata exif webm
ffmpeg metadata exif webm
edited Jan 25 at 0:56
John Texas
asked Jan 24 at 4:02
John TexasJohn Texas
11
11
1
What did you try with ffmpeg? Share the output offfmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39
|
show 1 more comment
1
What did you try with ffmpeg? Share the output offfmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39
1
1
What did you try with ffmpeg? Share the output of
ffmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
What did you try with ffmpeg? Share the output of
ffmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39
|
show 1 more comment
1 Answer
1
active
oldest
votes
Try the software suite MKVToolNix. A tool in it 'mkvpropedit' can be used for your purpose. It works on webm files also as it a profile of matroska. Here is an untested example.
(Try in cmd in the target's directory)
mkvpropedit "input.webm" --tags
NOTE: It might remove other useful tags too, so create a backup.
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1397747%2fhow-do-i-remove-all-metadata-from-a-webm-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try the software suite MKVToolNix. A tool in it 'mkvpropedit' can be used for your purpose. It works on webm files also as it a profile of matroska. Here is an untested example.
(Try in cmd in the target's directory)
mkvpropedit "input.webm" --tags
NOTE: It might remove other useful tags too, so create a backup.
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
add a comment |
Try the software suite MKVToolNix. A tool in it 'mkvpropedit' can be used for your purpose. It works on webm files also as it a profile of matroska. Here is an untested example.
(Try in cmd in the target's directory)
mkvpropedit "input.webm" --tags
NOTE: It might remove other useful tags too, so create a backup.
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
add a comment |
Try the software suite MKVToolNix. A tool in it 'mkvpropedit' can be used for your purpose. It works on webm files also as it a profile of matroska. Here is an untested example.
(Try in cmd in the target's directory)
mkvpropedit "input.webm" --tags
NOTE: It might remove other useful tags too, so create a backup.
Try the software suite MKVToolNix. A tool in it 'mkvpropedit' can be used for your purpose. It works on webm files also as it a profile of matroska. Here is an untested example.
(Try in cmd in the target's directory)
mkvpropedit "input.webm" --tags
NOTE: It might remove other useful tags too, so create a backup.
answered Feb 8 at 10:46
M. KnightM. Knight
263
263
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
add a comment |
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
Hello, this didn't work. I figured out that the correct command was [code]mkvpropedit "input.webm" --tags all:""[/code] however that didn't work either. Thank you though!
– John Texas
Feb 9 at 5:04
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1397747%2fhow-do-i-remove-all-metadata-from-a-webm-file%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
1
What did you try with ffmpeg? Share the output of
ffmpeg -i nometadata.webm
– Gyan
Jan 24 at 4:38
Output of ffmpeg is i.imgur.com/mHXXVd1.png on the file without metadata. I tried the solution on superuser here: superuser.com/questions/441361/…
– John Texas
Jan 24 at 5:29
What is the tool you're using to view metadata in the first screenshot? Have you created the file, or where did you get it from? Why would you even want a file that has no indicated length or bitrate?
– slhck
Jan 24 at 8:46
@slhck It's just right-clicking on the file and clicking details on Windows 10. Can't remember where I found it.
– John Texas
Jan 24 at 9:21
What kind of file is the example? What is the program/command you used to achieve this result?
– StarGeek
Jan 24 at 19:39