# MP3Tag Title not used as MKV Titles

**URL:** https://community.mp3tag.de/t/mp3tag-title-not-used-as-mkv-titles/45775
**Category:** Support
**Created:** [June 29, 2019, 1:29am UTC](https://community.mp3tag.de/t/mp3tag-title-not-used-as-mkv-titles/45775 "2019-06-29T01:29:58Z")
**Posts on this page:** 1
**Showing post:** 12

<div class="post-metadata">

### Author: ![LyricsLover](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/l/c6cbf5/32.png) [@LyricsLover](https://community.mp3tag.de/u/LyricsLover)
#### Post date: [February 26, 2025, 1:27pm UTC](https://community.mp3tag.de/t/mp3tag-title-not-used-as-mkv-titles/45775/12 "2025-02-26T13:27:33Z")

</div>

I'm just curious which MKV [TargetTypeValue](https://www.matroska.org/technical/tagging.html#target-types) does your script use to write the TITLE into the MKV?

```auto
mkvpropedit_cmd = [
   "mkvpropedit",
   file_path,
   "--edit", "info", "--set", f"title={title}", # Comment this out if you don't want the file title to be set to the movie or episode name
   "--edit", "track:v1", "--set", f"name={title}", # Comment this out if you don't want the video track name to be set to the movie or episode name
   "--set" if video_track != "-" else "", f"language={video_track}" if video_track != "-" else "" # Only set video track language if it is not "-"
   ]

```

I'm asking that after reading this [topic about TVSEASON](https://community.mp3tag.de/t/tvseason-not-working-for-mkv/67118/4).  
Maybe something similar to the code above could be used to set the TVSEASON accordingly?

---

_[View the full topic](https://community.mp3tag.de/t/mp3tag-title-not-used-as-mkv-titles/45775)._
