OUTPUT #667 | 2066 karakter | 53 satır
Welcome to Ubuntu 24.04.1 LTS (GNU/Linux 6.8.0-139-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Wed Sep 16 08:53:38 PM +03 2026

  System load:  0.25               Processes:               248
  Usage of /:   56.9% of 66.98GB   Users logged in:         1
  Memory usage: 27%                IPv4 address for ens160: 213.238.170.219
  Swap usage:   3%

 * Canonical Workshop gives developers fast, composable, reproducible, and
   secure developer environments that are perfect for agentic workflows.

   https://ubuntu.com/workshop

Expanded Security Maintenance for Applications is not enabled.

144 updates can be applied immediately.
To see these additional updates run: apt list --upgradable

16 additional security updates can be applied with ESM Apps.
Learn more about enabling ESM Apps service at https://ubuntu.com/esm


*** System restart required ***
Last login: Wed Sep 16 20:53:39 2026 from 88.253.69.213
root@213-238-170-219:~# temiz; python3 - <<'PY'
import subprocess, tempfile, os
F="/home/hermes/avalanche_shorts_benchmark_20260916_192459/output/avalanche_how_it_starts_tr_short.mp4"
dur=float(subprocess.check_output(["/usr/bin/ffprobe","-v","error","-show_entries","format=duration","-of","csv=p=0",F],text=True).strip())
times=[0.5+i*((dur-1.0)/5) for i in range(6)]
with tempfile.TemporaryDirectory() as td:
    for i,t in enumerate(times):
        out=f"{td}/{i}.jpg"
        subprocess.run(["/usr/bin/ffmpeg","-y","-v","error","-ss",f"{t:.3f}","-i",F,"-frames:v","1",out],check=True)
    files=sorted(os.listdir(td))
    print("SAMPLES="+", ".join(f"{x:.3f}" for x in times))
    print("FRAMES=",len(files))
    print("LAST_OFFSET_FROM_END=",round(dur-times[-1],3))
    print("TEST=" + ("PASS" if len(files)==6 else "FAIL"))
PY

========== YENİ KOMUT | 16.09.2026 20:54:28 ==========

SAMPLES=0.500, 5.573, 10.647, 15.720, 20.793, 25.867
FRAMES= 6
LAST_OFFSET_FROM_END= 0.5
TEST=PASS
root@213-238-170-219:~#