# Tag transfer problem

**URL:** https://community.mp3tag.de/t/tag-transfer-problem/13150
**Category:** Support
**Created:** [February 27, 2012, 1:45pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150 "2012-02-27T13:45:56Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![FichteFoll](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/f/a6a055/32.png) [@FichteFoll](https://community.mp3tag.de/u/FichteFoll)
#### Post date: [February 27, 2012, 1:45pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/1 "2012-02-27T13:45:56Z")

</div>

Hello,

I am searching for a way to transfer multiple files' metadata to other files.  
I know about the possibility to copy tags, but the problem is that I want to copy **only** the ARTIST tag and not everything.

I abandoned the idea that Mp3tag supports this natively so I tried to solve this via "Actions". The problem here ist that Actions are not suited to work across multiple files (i.e. transfer data from one tag to another).

So I tried to split the script into two parts and let the TRACK field behave as comunicator. I tried to export "$filename(txt,utf-16)%artist%" to "$num(%track%,2).txt" and wanted to import the contents from the corresponding files, but this only created one file for the first track and not for each track.

The other attempt was to write the artist tags into one file and then script that with regex. But I don't how to read the contents of a file and format them with format strings ...

Does anyone have another idea how I can achieve what I'm searching for? Thanks.

---

<div class="post-metadata">

### Author: ![pone](https://community.mp3tag.de/user_avatar/community.mp3tag.de/pone/32/272_2.png) [@pone](https://community.mp3tag.de/u/pone)
#### Post date: [February 27, 2012, 2:02pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/2 "2012-02-27T14:02:27Z")

</div>

Export is the right way here. Try:

$filename(txt,utf-16)$loop(%\_path%)%artist%  
$loopend()

That should give you a text file with one line for each file.  
You can import that text file into other files with the textfile-tag-converter. Your formatstring there would be:  
%artist%

It is important that the files are sorted in the same order at export and import. You could avoid the sorting problem if you are somehow able to include the filenames of the new files at the export from the old files. Then the textfile-tag converter would be able to use %\_path% instead of the fileorder to assosiate the lines to the files.

btw:  
via Actions as well as via Export is "natively" in Mp3tag

---

<div class="post-metadata">

### Author: ![FichteFoll](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/f/a6a055/32.png) [@FichteFoll](https://community.mp3tag.de/u/FichteFoll)
#### Post date: [February 27, 2012, 3:41pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/3 "2012-02-27T15:41:40Z")

</div>

> [@pone](#):
>
> You can import that text file into other files with the textfile-tag-converter.

Thanks, this is what I've been searching for.

---

<div class="post-metadata">

### Author: ![washicjr](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/w/a88e57/32.png) [@washicjr](https://community.mp3tag.de/u/washicjr)
#### Post date: [March 12, 2012, 11:42pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/4 "2012-03-12T23:42:03Z")

</div>

> [@pone](#):
>
> Export is the right way here. Try:
> 
> $filename(txt,utf-16)$loop(%\_path%)%artist%  
> $loopend()
> 
> That should give you a text file with one line for each file.  
> You can import that text file into other files with the textfile-tag-converter. Your formatstring there would be:  
> %artist%
> 
> It is important that the files are sorted in the same order at export and import. You could avoid the sorting problem if you are somehow able to include the filenames of the new files at the export from the old files. Then the textfile-tag converter would be able to use %\_path% instead of the fileorder to assosiate the lines to the files.
> 
> btw:  
> via Actions as well as via Export is "natively" in Mp3tag

> _You could avoid the sorting problem if you are somehow able to include the filenames of the new files at the export from the old files. Then the textfile-tag converter would be able to use %\_path% instead of the fileorder to assosiate the lines to the files._

Can you provide a sample export? I can't seem to get this to work properly

Clarence

---

<div class="post-metadata">

### Author: ![DetlevD](https://community.mp3tag.de/user_avatar/community.mp3tag.de/detlevd/32/123_2.png) [@DetlevD](https://community.mp3tag.de/u/DetlevD)
#### Post date: [March 13, 2012, 5:15am UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/5 "2012-03-13T05:15:38Z")

</div>

> [@Clarence Washington](#):
>
> ... Can you provide a sample export? I can't seem to get this to work properly ...

There are many related topics covered in the forum ...  
[https://community.mp3tag.de/search?q=\_path+textfile+tag](https://community.mp3tag.de/search?q=_path+textfile+tag)

For a simple example ... read there ...  
[/t/13059/1](https://community.mp3tag.de/t/13059/1)

How to create a report text file read there ...  
[https://docs.mp3tag.de/export](https://docs.mp3tag.de/export)

DD.20120313.0715.CET

---

<div class="post-metadata">

### Author: ![system](https://community.mp3tag.de/uploads/default/original/2X/c/ce7035d426cb755a7916793326d23b465222a407.png) [@system](https://community.mp3tag.de/u/system)
#### Post date: [February 9, 2026, 12:23pm UTC](https://community.mp3tag.de/t/tag-transfer-problem/13150/6 "2026-02-09T12:23:41Z")

</div>


