Filename becomes Metadata Title of Photo?

I want to Filename to become of the photo title (metadata)? Can anyone explain to me how to do this?

I need this for stock photo websites when I upload photos, because they don't read from the filename, but from the file title (metadata captain)

Can anyone please help in detail?
Reply to #1:

I don't think that Aren can do this (well) -- especially if the file does not already have a title tag.

But Aren ships with ExifTool. And ExifTool does this kind of thing.

Here is a Windows batch file that sets the title of every jpg file, in a directory, to that file's filename.

rem -------------------------------------------------------------
@echo off
rem Set the path to ExifTool
set "exiftool=C:\Program Files\Advanced Renamer\exiftool.exe"

setlocal enabledelayedexpansion

rem Loop through all .jpg files in the directory
for %%f in (*.jpg *.jpeg) do (
rem Remove the file extension to get the filename
set "filename=%%~nf"
echo Processing file: %%f
rem Set the EXIF title to the filename
"!exiftool!" -Title="!filename!" -overwrite_original "%%f"
)
echo EXIF titles have been set.
pause
rem -------------------------------------------------------------

To use it, paste that text into a file and then rename the file to "filenameToTitle.bat".

Adjust the value in the set "exiftool=... line if you have a nonstandard installation.

Move or copy filenameToTitle.bat to the folder with your pictures and then run it.