How can I remove “Where from” information from downloaded .mkv file?Hide creation date of a fileWhere is...

extract specific cheracters from each line

Is it a missed optimization, when a compile-time known reference takes space in a struct?

Why there is no wireless switch?

Why did Boris Johnson call for new elections?

Professor refuses to write a recommendation letter to students who haven't written a research paper with him

How do I delete cookies from a specific site?

Entering the US with dual citizenship but US passport is long expired?

Why would image resources loaded from different origins triggering HTTP authentication dialogs be harmful?

Draw the ☣ (Biohazard Symbol)

What are the map units that WGS84 uses?

Short story: Interstellar inspector senses "off" nature of planet hiding aggressive culture

Is it right to use the ideas of non-winning designers in a design contest?

What's this constructed number's starter?

Can you create water inside someone's mouth?

Can Adventure creatures always be cast from exile?

Did the Byzantines ever attempt to move their capital to Rome?

Infinitely many primes

Dissuading my girlfriend from a scam

My Friend James

How to interpret or parse this confusing 'NOT' and 'AND' legal clause

How can I hint that my character isn't real?

Where on Earth is it easiest to survive in the wilderness?

Putting future professor position on CV

In apex, how to replace the value in the string



How can I remove “Where from” information from downloaded .mkv file?


Hide creation date of a fileWhere is the 'Where from' meta data stored when downloaded via Chrome?Any way to edit metadata of MKV files (without re-encoding)?I can no longer see the url from where I have downloaded a file in Get Info, can I get that back?Automator “Set PDF metadata” window size?Changing file metadata from CLI that will show in FinderHow to remove “where from” xattr data from image files downloaded in Mac?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1















I have downloaded an .mkv files from Safari. When I open "Info" in Finder on the file, I see the following link to where it was downloaded from:



enter image description here



How can I remove that metadata from the file?










share|improve this question









New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • 1





    In Terminal, type man xattr and press enter. Read the manual page.

    – user3439894
    7 hours ago


















1















I have downloaded an .mkv files from Safari. When I open "Info" in Finder on the file, I see the following link to where it was downloaded from:



enter image description here



How can I remove that metadata from the file?










share|improve this question









New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • 1





    In Terminal, type man xattr and press enter. Read the manual page.

    – user3439894
    7 hours ago














1












1








1








I have downloaded an .mkv files from Safari. When I open "Info" in Finder on the file, I see the following link to where it was downloaded from:



enter image description here



How can I remove that metadata from the file?










share|improve this question









New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I have downloaded an .mkv files from Safari. When I open "Info" in Finder on the file, I see the following link to where it was downloaded from:



enter image description here



How can I remove that metadata from the file?







mojave metadata






share|improve this question









New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited 7 hours ago









jksoegaard

25.7k1 gold badge33 silver badges62 bronze badges




25.7k1 gold badge33 silver badges62 bronze badges






New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked 8 hours ago









sanam 13sanam 13

161 bronze badge




161 bronze badge




New contributor



sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




sanam 13 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • 1





    In Terminal, type man xattr and press enter. Read the manual page.

    – user3439894
    7 hours ago














  • 1





    In Terminal, type man xattr and press enter. Read the manual page.

    – user3439894
    7 hours ago








1




1





In Terminal, type man xattr and press enter. Read the manual page.

– user3439894
7 hours ago





In Terminal, type man xattr and press enter. Read the manual page.

– user3439894
7 hours ago










1 Answer
1






active

oldest

votes


















3
















The link listed in "Where from" is stored as an extended attribute named "com.apple.metadata:kMDItemWhereFroms" on the file in the file system - it is not actually saved within the .mkv file itself.



You can remove it by opening Terminal.app and running the following command:



xattr -d com.apple.metadata:kMDItemWhereFroms filename.mkv


where filename.mkv is to be replaced with the actual path and name of the file. The easiest way to do that is simply to write the first part of the command, and then drag the .mkv file into the Terminal.app window.






share|improve this answer



































    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3
















    The link listed in "Where from" is stored as an extended attribute named "com.apple.metadata:kMDItemWhereFroms" on the file in the file system - it is not actually saved within the .mkv file itself.



    You can remove it by opening Terminal.app and running the following command:



    xattr -d com.apple.metadata:kMDItemWhereFroms filename.mkv


    where filename.mkv is to be replaced with the actual path and name of the file. The easiest way to do that is simply to write the first part of the command, and then drag the .mkv file into the Terminal.app window.






    share|improve this answer






























      3
















      The link listed in "Where from" is stored as an extended attribute named "com.apple.metadata:kMDItemWhereFroms" on the file in the file system - it is not actually saved within the .mkv file itself.



      You can remove it by opening Terminal.app and running the following command:



      xattr -d com.apple.metadata:kMDItemWhereFroms filename.mkv


      where filename.mkv is to be replaced with the actual path and name of the file. The easiest way to do that is simply to write the first part of the command, and then drag the .mkv file into the Terminal.app window.






      share|improve this answer




























        3














        3










        3









        The link listed in "Where from" is stored as an extended attribute named "com.apple.metadata:kMDItemWhereFroms" on the file in the file system - it is not actually saved within the .mkv file itself.



        You can remove it by opening Terminal.app and running the following command:



        xattr -d com.apple.metadata:kMDItemWhereFroms filename.mkv


        where filename.mkv is to be replaced with the actual path and name of the file. The easiest way to do that is simply to write the first part of the command, and then drag the .mkv file into the Terminal.app window.






        share|improve this answer













        The link listed in "Where from" is stored as an extended attribute named "com.apple.metadata:kMDItemWhereFroms" on the file in the file system - it is not actually saved within the .mkv file itself.



        You can remove it by opening Terminal.app and running the following command:



        xattr -d com.apple.metadata:kMDItemWhereFroms filename.mkv


        where filename.mkv is to be replaced with the actual path and name of the file. The easiest way to do that is simply to write the first part of the command, and then drag the .mkv file into the Terminal.app window.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 7 hours ago









        jksoegaardjksoegaard

        25.7k1 gold badge33 silver badges62 bronze badges




        25.7k1 gold badge33 silver badges62 bronze badges


















            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...