Skip to content

Instantly share code, notes, and snippets.

View trofimovdev's full-sized avatar

Anatoly trofimovdev

View GitHub Profile

Keybase proof

I hereby claim:

  • I am trofimovdev on github.
  • I am trofimovdev (https://keybase.io/trofimovdev) on keybase.
  • I have a public key whose fingerprint is 8169 F8F4 7A55 CA55 824C 1E62 7AA7 40D4 B03D 8B7C

To claim this, I am signing this object:

@trofimovdev
trofimovdev / change_utime.py
Created January 4, 2021 23:48
Takes the time from the filename and pastes into the utime
import os, time
import ffmpeg
from datetime import datetime
path = '/'
names = sorted(os.listdir(path))
files_counter = 0
for name in names:
if not name.lower().endswith('.mov'):
continue