Hi all
I've recently purchased an LG 49" TV, and have found the built in media player to be surprisingly good.
The only frustration I have at the moment, is that when browsing files through the DNLA server I am using (built in to the media player on my PC) I only see episode titles. This is frustrating when I don't know what order they are meant to be in. The filenames are all in the format SxxExx but it's ignoring that.
Is there any way to get the TV to display the files using the filename as opposed to (what I assume to be) the meta data?
Thanks
Nick
+ Reply to Thread
Results 1 to 7 of 7
Thread
-
-
Not as far as I know. I remember in the past I had to delete the metadata from the file -
then it will use the file name -
-
It may depend on the file extension and your version of Windows. Seems to work for mp4 in Windows 8.1.
Select all the files in Windows Explorer (same folder). Right click/properties/details.
Select "remove properties and personal information", then see the second window as below: -
MP3tag (haven't tried it) has high ratings here: https://www.videohelp.com/software/Mp3tag/reviews I seems to be able to add metadata info as a batch.
I used the technique posted above to strip the metadata from multiple files at once in Win 7 and Win 10. -
Thanks guys. The majority of files are mkv, but I'll look into both those options.
-
ffmpeg can remove metadata:
Code:ffmpeg -i original.mkv -c copy -map_metadata -1 new.mkv
Code:for %%F in (*.mkv) do ffmpeg.exe -i "%%F" -c copy -map_metadata -1 "%%~dpnF.cleaned.mkv"
Similar Threads
-
Batch MKV title to filename renaming.
By Zareaus in forum Newbie / General discussionsReplies: 7Last Post: 16th May 2018, 04:12 -
batch: how to get the extension of filename without the (.)?
By marcorocchini in forum Newbie / General discussionsReplies: 10Last Post: 8th Oct 2017, 15:22 -
batch that compare filename in 2 folder
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 3rd Oct 2017, 04:58 -
MP4Tools specify output filename?
By themelz in forum MacReplies: 1Last Post: 27th Apr 2016, 06:56 -
how do i take out the filename in a mkv file?
By RBCC in forum EditingReplies: 3Last Post: 17th Mar 2016, 19:56