Concept introduction
- TypeScript is an open source programming language developed by Microsoft, built by adding static type definitions based on JavaScript.
- Transport Stream is a common video packaging format, which is based on MPEG-2 packaging format (so it is also called MPEG-TS)
- TypeScript and Transport Stream file extensions are ts
Problem phenomenon
On Windows operating system, .ts is marked as Transport Stream by default. This is completely fine for ordinary users, but it is a disaster for TypeScript developers: when opening a project with a large number of .ts files in a file browser, the system needs to scan all files and try to identify the cover of the video. This process is almost frame-by-frame animation, which seriously affects work efficiency.
Solution
To solve this problem, you must modify the Windows registry, save the following code as, and then double-click to import the registry and restart the system.
Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\.ts] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Kindmap] ".ts"="document"
Restore video mode
Then someone might want to say, what if I want to recover one day? The following is the registry code for recovery:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.ts] "Content Type"="video/-tts" "PerceivedType"="video" [HKEY_CLASSES_ROOT\.ts\OpenWithProgids] "AppX6eg8h5sxqq90pv53845wmnbewywdqq5h"=hex(0): [HKEY_CLASSES_ROOT\.ts\ShellEx] [HKEY_CLASSES_ROOT\.ts\ShellEx\{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}] @="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}" [HKEY_CLASSES_ROOT\.ts\ShellEx\{e357fccd-a995-4576-b01f-234630154e96}] @="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Kindmap] ".ts"="video"
The above is the detailed content of solving the problem of Typescript files being recognized as videos. For more information about Typescript files being recognized as videos, please pay attention to my other related articles!