Search found 16 matches

by python80
14 Oct 2023 01:09
Forum: Script Exchange
Topic: Custom Column: Media Integrity Check with ffmpeg
Replies: 5
Views: 1903

Re: Custom Column: Media Integrity Check with ffmpeg

Provide a .mp4 file (upload it on google drive, dropbox...) with errors and post the link https://drive.google.com/file/d/1c5TqlW6puL0nxZE-Nl-c-Oe4bmCGivUh/view?usp=sharing X:\ffmpeg\x64>ffmpeg -v error -i "X:\S01EP01_Corrupt.mp4" -f null - 2>error.log error.log: [h264 @ 000001d746536080]...
by python80
14 Oct 2023 00:11
Forum: Script Exchange
Topic: Custom Column: Media Integrity Check with ffmpeg
Replies: 5
Views: 1903

Re: Custom Column: Media Integrity Check with ffmpeg

highend wrote: 13 Oct 2023 23:56 Possible? Sure

But running ffmpeg over every file will be slow...
Yes, I know it. ffmpeg will check media completely.
highend wrote: 13 Oct 2023 23:56 Apart from that:
runret()
regexreplace()
I can't do it. :(
How should the script be?
by python80
13 Oct 2023 22:53
Forum: Script Exchange
Topic: Custom Column: Media Integrity Check with ffmpeg
Replies: 5
Views: 1903

Custom Column: Media Integrity Check with ffmpeg

We can see media errors in a log file with ffmpeg. My video file: file.mp4 ffmpeg -v error -i file.mp4 -f null - 2>error.log How can I see error.log in a custom column? Also I don't want to see lines which includes "Application provided invalid, non monotonically increasing dts to muxer in stre...
by python80
24 Jan 2023 18:37
Forum: Tips & Tricks, Questions & Answers
Topic: Previewing 1st line of txt file as a custom column?
Replies: 8
Views: 1638

Re: Previewing 1st line of txt file as a custom column?

highend wrote: 24 Jan 2023 18:25 Use a regex to capture that part or just remove all other html tags and trim the result?
Both of them OK.
But how?
by python80
24 Jan 2023 18:06
Forum: Tips & Tricks, Questions & Answers
Topic: Previewing 1st line of txt file as a custom column?
Replies: 8
Views: 1638

Re: Previewing 1st line of txt file as a custom column?

return gettoken(readfile(<cc_item>), 3, <crlf>, , 1); ? It works, thank you very much. My Custom Column: return gettoken(readfile(<cc_item>), 2, <crlf>); For my html file, custom column like this: <html lang="tr-TR" dir="ltr"> <head> <meta charset="utf-8"> <title>XYplo...
by python80
10 Jan 2023 18:50
Forum: Tips & Tricks, Questions & Answers
Topic: Previewing 1st line of txt file as a custom column?
Replies: 8
Views: 1638

Re: Previewing 1st line of txt file as a custom column?

Thank you, very useful...
How about previewing first three lines of txt file?
by python80
10 Sep 2022 20:46
Forum: Script Exchange
Topic: RAR custom column
Replies: 2
Views: 1242

Re: CC snippet - Video length

My custom column script: $rar = "C:\Program Files\WinRAR\rar.exe"; return regexreplace(runret("$rar l ""<cc_item>"""), "\r?\n"); Custom Column: RAR 6.11 x64 Copyright (c) 1993-2022 Alexander Roshal 3 Mar 2022Registered to xxxArchive: X:\Test\Test.rar...
by python80
10 Sep 2022 13:13
Forum: Wishes
Topic: Duplicate Finder add option
Replies: 9
Views: 2816

Re: Duplicate Finder add option

What a funny admin/developer, I really like it. :)

Well, can XYplorer warn user before deleting the only one left copy?

Sometimes I mistakenly delete the file from the neighbor group.

Maybe glasses will be a better choice. :)

Sory for my bad English.
by python80
09 Sep 2022 00:48
Forum: Wishes
Topic: Duplicate Finder add option
Replies: 9
Views: 2816

Re: Duplicate Finder add option

When we delete one of the copies from disk can XYplorer delete the other copy from the list automatically?
If not, can you add an option for this?

Thanks for reading and sorry for bad English.
by python80
08 Sep 2022 15:53
Forum: Script Exchange
Topic: [Script] TimeSync 1.1 Beta2 - January 8, 2015
Replies: 24
Views: 10701

Re: [Script] TimeSync 1.1 Beta2 - January 8, 2015

@highend It's working, thank you very much. I'm sorry but even if this was possible, how would one (obviously apart from you) keep track of the order of files selected in each pane? Thanks for your comment. The script pastes the timestamps the way we sort the files. If we select same files on both p...
by python80
06 Sep 2022 13:40
Forum: Script Exchange
Topic: [Script] TimeSync 1.1 Beta2 - January 8, 2015
Replies: 24
Views: 10701

Re: [Script] TimeSync 1.1 Beta2 - January 8, 2015

Timsetamps.png I want to copy/paste timestamps between files. 1) Copy file time stamps (A.rar, C.txt, D.pdf) 2) Paste timestamps to another files (q.7z, x.wmv, z.dll) A.rar ---> q.7z C.txt ---> x.wmv D.pdf ---> z.dll After copy paste operation... File Timestamps ----- ------------------- A.rar Pres...
by python80
02 Sep 2022 15:16
Forum: Script Exchange
Topic: RAR custom column
Replies: 2
Views: 1242

RAR custom column

It really works. My sample columns: Column: Writing Application $mediaInfo = "C:\Program Files\MediaInfo\MediaInfo.exe"; return regexreplace(runret("$mediaInfo --Inform=General;%Encoded_Application/String% ""<cc_item>"""), "\r?\n"); Column: Writing L...
by python80
14 Aug 2022 19:59
Forum: Tips & Tricks, Questions & Answers
Topic: Custom Column for Calculating Difference Between Timestamps
Replies: 9
Views: 1447

Re: Custom Column for Calculating Difference Between Timestamps

Not impressed? :) I was really impressed. :) That's enough for me. Thank you very much. "return datediff(filetime(<cc_item>, "c"), filetime(<cc_item>, "m"), "d" );" "y": year "m": month "d": day "h": hour "s":...
by python80
09 Jul 2022 17:35
Forum: Script Exchange
Topic: Copy dates to matching filenames with Timestamp
Replies: 4
Views: 2291

Re: Copy dates to matching filenames with Timestamp

Hi!

I'm really sorry for bad English.

How can I transfer file timestamps easily Folder1 to Folder2?

Source: X:\TestFolder\Folder1
Target: X:\TestFolder\Folder2

Same files names, same folder structure.
Test-Timestamps
Test-Timestamps
Test.png (41.25 KiB) Viewed 1498 times
Thanks for reading.