Path: ...!weretis.net!feeder9.news.weretis.net!i2pn.org!i2pn2.org!.POSTED!not-for-mail From: Stefan Claas Newsgroups: sci.crypt Subject: Re: az - Telefax/OCR Test Date: Sat, 4 May 2024 15:09:12 +0200 Organization: i2pn2 (i2pn.org) Message-ID: References: <7P6XN.610386$oD2.194358@fx11.ams4> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Injection-Date: Sat, 4 May 2024 13:09:13 -0000 (UTC) Injection-Info: i2pn2.org; logging-data="57665"; mail-complaints-to="usenet@i2pn2.org"; posting-account="uWi4uQdALkj7ETOfPbhNXfz0+Ra/gM5z6/Fa40dJi9U"; Finger: tilde.club/~pollux/ X-Spam-Checker-Version: SpamAssassin 4.0.0 Bytes: 2419 Lines: 42 Stefan Claas wrote: > While I still cannot decode the video, I have now my own > solution. > > Here is the Python3 code: > > import qrcode > import os > import argparse > import shutil > from pyzbar.pyzbar import decode > from PIL import Image > import base64 > > parser = argparse.ArgumentParser() > parser.add_argument('-f', '--file', help='File to convert to/from QR codes') > parser.add_argument('-e', '--encode', help='Directory to save QR codes', default=None) > parser.add_argument('-d', '--decode', help='Directory to load QR codes from', default=None) > args = parser.parse_args() > > def file_to_qrcodes(file_path, directory): > with open(file_path, 'rb') as f: > counter = 0 Set counter to 1 for my following bash script[1]. > ffmpeg -i "$FOLDERFILENAME" -start_number 0 "$DIRNAME/qr%d.png" and remove -start_number 0 [1] which allows you to print QR-Codes, nicely formatted, on paper, like Herbert has shown in his example. -- Regards Stefan