I cannot find information anywhere. Sorry, English is my second language.
I possess a DVD and want to upload this as a torrent so others can download it.
I burn the media to my Linux PC using a media ripper. I use Handbrake to convert the media and small the file size.
I can create a torrent. But how do I insure none of my computer’s personal information and identifiers are saved on that file? I dont want me to be found out if someone opens the file and somehow can see I’m the one who created it.
In other hand, how do the pirates create and upload media into torrents while protecting themself from being found out?
Edit: Corrected to Linux PC


I think you worried about metadata mostly. Can maybe infer gpu/os/software from encode pattern, but probably not problem for you.
For image metadata usually called exif data, exiftool on linux work well for me. For video, ffmpeg has ffprobe tool to extract metadata using some option. Ffmpeg also have some option to clear metadata (but not all), complicated a bit to set up right.
If not available for windows, search for alternative. Or graphical wrapper if not like commandline.
First verify you have good method to see metadata, then try what method remove what.
If really paranoid, dump windows (has lot of spyware), use tool like gnu strings to see printable string in binary file might be metadata.
For torrent:
See if already exist by someone (public index search, dht search engine)
Throw out handbrake, always upload original quality. Reencode fine if from raw source material, but no dvd/bluray has raw quality. Or if really want to offer small file, upload both.
Create torrent with dht/pex enable to allow dht search engine and other peer to find.
Use no-log vpn or i2p to seed.
More info probably in megathread or wiki.
Edit: 5. over vpn or i2p make account on public index and upload torrent as new post. Or share torrent with friend. Or on other forum.
Thank you for your answers. I forgot that the computer I use for this purpose is Linux. I was worried with Windows, so use Linux on a spare laptop for this activity. Worry with metadata and those personal identifiers.
I use exiftool for images, but it does not work with MKV. I can try Ffmpeg to see if any metadata comes back. But I worry not just for metadata. But also same for any other parameter that is in the file itself. Metadata is outside, might be other identifiers encoded in the file. The two things are my big worries.
I try hex editor some other person posted, but don’t know how to read it.
Thank you for your help.
https://superuser.com/q/441361 for ffmpeg metadata clear.
This command only print readable string opposed to hex edit. Could use tool like sed or perl to replace, but might corrupt file (for example if metadata part of checksum for some data). Note sed and perl need escape some special character because use regex.
strings file.mkv sed 's/badstring//' file.mkvhex dump is all raw data from file as hexadecimal number, not much readable. Except for raw string, which strings is better tool for.
Metadata define as all data that is not file data (in this case video), so you talking about metadata. Again, can infer some metadata from video data, but not enough to identify pc. Metadata like encoder version, timestamp when was recorded, recording device/software. Ffmpeg strip all except encoder.