I'm using these flags to generate grid thumbnails for 10 bit videos and HEVC videos and there are 2-7 frames with the exact same timestamp. https://i.imgur.com/2ZN66at.png -g 10x73 -s 25% -m jpg@20 *.mkv This does not happen on regular h.264 8 bit videos.
I'm using these flags to generate grid thumbnails for 10 bit videos and HEVC videos and there are 2-7 frames with the exact same timestamp. -g 10x73 -s 25% -m jpg@20 *.mkv This does not happen on regular h.264 8 bit videos.
It's the same path. Why is it working for you but not for me?
The path is the same, but it doesn't work for me. Tried it on a fresh install of Windows 10 and it didn't work there either.
Does your script work for you though? It doesn't do anything at all. No error, no execution.
That did not work for me. What Powershell version are you using? https://i.imgur.com/TCrQBsS.png
On the latest version of Windows 10, 7-zip is having issues with archiving folders and files with special characters in the name. For example, it will ignore a folder or file called "google.com" or "Trick |Treat" or "1/4" and so on. You can replicate this issue by using this Powershell script $7z = "C:\Program Files\7-Zip\7z.exe" Get-ChildItem -Path $PSScriptRoot -Directory | ForEach-Object { & "$7z" a -mx=9 $PSScriptRoot\$($_.Name) "$($_.FullName)\*" }