From b2300a86095d433f1b7462cdd94f5ecdbe0c6327 Mon Sep 17 00:00:00 2001 From: arf20 Date: Sun, 9 Feb 2025 01:40:35 +0100 Subject: Project pagem arfvcr --- projects/arfvcr/bat.jpg | Bin 0 -> 35018 bytes projects/arfvcr/cam.jpg | Bin 0 -> 38900 bytes projects/arfvcr/cam.png | Bin 0 -> 275997 bytes projects/arfvcr/con.jpg | Bin 0 -> 56739 bytes projects/arfvcr/done.jpg | Bin 0 -> 170253 bytes projects/arfvcr/frame.jpg | Bin 0 -> 92780 bytes projects/arfvcr/front.jpg | Bin 0 -> 205500 bytes projects/arfvcr/in1.jpg | Bin 0 -> 180539 bytes projects/arfvcr/in2.jpg | Bin 0 -> 218315 bytes projects/arfvcr/index.html | 110 +++++++++++++++++++++++++++++++++++++++++++++ projects/arfvcr/me.jpg | Bin 0 -> 163575 bytes projects/arfvcr/vcr.jpg | Bin 0 -> 393287 bytes projects/index.html | 94 +++++++++++++++++++++++++++++--------- 13 files changed, 184 insertions(+), 20 deletions(-) create mode 100644 projects/arfvcr/bat.jpg create mode 100644 projects/arfvcr/cam.jpg create mode 100644 projects/arfvcr/cam.png create mode 100644 projects/arfvcr/con.jpg create mode 100644 projects/arfvcr/done.jpg create mode 100644 projects/arfvcr/frame.jpg create mode 100644 projects/arfvcr/front.jpg create mode 100644 projects/arfvcr/in1.jpg create mode 100644 projects/arfvcr/in2.jpg create mode 100644 projects/arfvcr/index.html create mode 100644 projects/arfvcr/me.jpg create mode 100644 projects/arfvcr/vcr.jpg (limited to 'projects') diff --git a/projects/arfvcr/bat.jpg b/projects/arfvcr/bat.jpg new file mode 100644 index 0000000..fc756c8 Binary files /dev/null and b/projects/arfvcr/bat.jpg differ diff --git a/projects/arfvcr/cam.jpg b/projects/arfvcr/cam.jpg new file mode 100644 index 0000000..1b7793c Binary files /dev/null and b/projects/arfvcr/cam.jpg differ diff --git a/projects/arfvcr/cam.png b/projects/arfvcr/cam.png new file mode 100644 index 0000000..31b5fdf Binary files /dev/null and b/projects/arfvcr/cam.png differ diff --git a/projects/arfvcr/con.jpg b/projects/arfvcr/con.jpg new file mode 100644 index 0000000..fcd9a6c Binary files /dev/null and b/projects/arfvcr/con.jpg differ diff --git a/projects/arfvcr/done.jpg b/projects/arfvcr/done.jpg new file mode 100644 index 0000000..36ebc66 Binary files /dev/null and b/projects/arfvcr/done.jpg differ diff --git a/projects/arfvcr/frame.jpg b/projects/arfvcr/frame.jpg new file mode 100644 index 0000000..ece068f Binary files /dev/null and b/projects/arfvcr/frame.jpg differ diff --git a/projects/arfvcr/front.jpg b/projects/arfvcr/front.jpg new file mode 100644 index 0000000..ed8a1dc Binary files /dev/null and b/projects/arfvcr/front.jpg differ diff --git a/projects/arfvcr/in1.jpg b/projects/arfvcr/in1.jpg new file mode 100644 index 0000000..e5526a2 Binary files /dev/null and b/projects/arfvcr/in1.jpg differ diff --git a/projects/arfvcr/in2.jpg b/projects/arfvcr/in2.jpg new file mode 100644 index 0000000..061052c Binary files /dev/null and b/projects/arfvcr/in2.jpg differ diff --git a/projects/arfvcr/index.html b/projects/arfvcr/index.html new file mode 100644 index 0000000..e72d097 --- /dev/null +++ b/projects/arfvcr/index.html @@ -0,0 +1,110 @@ + + + + + + ARFNET + + + + +
+ ARFNET +
+
+

Projects

+

arfvcr

+ +

+ A friend from the Makers of Murcia hackerspace + brought a few 80s tube TV cameras to a retro meetup, and they were free to take. I took one such + SONY Trinicon HVC-4000P, an awesome camera that was released in the early 80s. At that time, + camcorders didn't exist, they were television cameras because there weren't small enough + tape mechanisms to be integrated in. They required heavy external battery powered VCRs + like the Sony SL-F1, that you would hang off your shoulder, which we did not have. + So I thought I'd build a digital knockoff. +

+ +
+ + +
+ +

+ The thing is basically a battery powered video capture box, a little computer + with a composite capture card attached. I chose to base it on a Raspberry Pi 4B + because it has to be fast enough to encode video at real time; and for the capture + card I had a *forgot* USB card, that exposes a raw yuv422 stream thanks to the + video4linux2 driver. Interfacing with the camera, the same friend gave me the + hard to find matching female connector that I could just mount to a chassis. + Finally for power, because I am a cheap and simple person, I went with a 7Ah + lead acid battery, which was very controversial in the hackerspace telegram channel :) +

+ +
+ + + +
+ +

+ So, power comes in from the battery or a barrel jack in the front panel, and comes to a + general power switch. That then goes to a 12-to-5V buck converter for the raspi and to another + toggle switch for the camera. The front panel also has a volt meter to check battery charge, + power and status LEDs, the rec/review switch and of course, the proprietary SONY connector + for the camera. +

+ +
+ +
+ +

+ The tethering cable has AV in and out, because it can also review recorded footage; and + some control signals as well: recording start/stop (from camera), rec/review (from camera), + tally signal in (from VCR: switches the viewfinder and monitor headphone jack to AV in). + Now, slight problem. I don't know how the signaling is supposed to work. start/stop and rec/review + aren't simple HIGH/LOW signals, they have no voltage when hitting the reflected buttons. + The camera also doesn't respond to a LOW or HIGH on the tally sig in, 5 nor 12V. + I should review the public schematics for the thing and figure it out. + Also, the audio out appears to be quiet. +

+ +
+ +
+ +

+ Software wise, I installed Debian 12 for ARM64, and then found that I needed a feature for + power debugging, so I had to install the downstream rasperry-pi kernel and userspace software. + I found that the hardware encoder never worked at all with any OS or ffmpeg version so it + mattered not, thats why I needed a fast raspi, for RT libx264. Of couse as mentioned, + ffmpeg was chosen by default for video capture and encoding. I love ffmpeg. Thanks Fabrice Bellard. + ffmpeg is love, ffmpeg is life. +

+ +

+ Because this is a headless device and I shouldn't need a console to hit record (although + the raspi creates a WiFi network to ssh into), I had to write + some software to trigger ffmpeg; so I wrote a daemon in C that reads GPIO pins from the front + panel or the camera (explained later) to start and stop the capture. + All of this is GPL available at github. +

+ +
+ + +
+ +

+ + + diff --git a/projects/arfvcr/me.jpg b/projects/arfvcr/me.jpg new file mode 100644 index 0000000..76c5758 Binary files /dev/null and b/projects/arfvcr/me.jpg differ diff --git a/projects/arfvcr/vcr.jpg b/projects/arfvcr/vcr.jpg new file mode 100644 index 0000000..7400f76 Binary files /dev/null and b/projects/arfvcr/vcr.jpg differ diff --git a/projects/index.html b/projects/index.html index bd4ade1..ba99985 100644 --- a/projects/index.html +++ b/projects/index.html @@ -1,20 +1,74 @@ - - - - - - - ARFNET - - - -

- ARFNET -
-
-

Projects

-
- -
- - + + + + + + ARFNET + + + + +
+ ARFNET +
+
+

Projects

+
+

Hardware

+
+
+

arfvcr WIP

+ Digital pseudo-VCR for proprietary SONY Trinicon cameras +
+
+

oscilloscope-terminal WIP

+ Turn your oscilloscope into a linux terminal emulator with a sound card +
+
+

workstations-gaia WIP

+ Preservation project and museum for the 90s UNIX workstations found at FIUM's Gaialab and Compute Centre storage +
+
+

Software

+
+
+

asd WIP

+ arf software distribution: small embeddable and customizable BusyBox/Linux distribution +
+
+

arfts WIP

+ Simple typesetting system designed for plaintext +
+
+

arfchat WIP

+ Simple UDP multicast chatroom application with internetwork relay daemon +
+
+

arfmipsas + arfmipssim + arfcpu WIP

+ Assembler, simulator & debugger and hardware description of the UM's ETC subject MIPS-based CPU +
+
+

arfminesweeper WIP

+ Turn your oscilloscope into a linux terminal emulator with a sound card +
+
+

arftracksat WIP

+ OpenGL satellite tracker +
+
+

ARFNET CSTIMS WIP

+ Simple Customer, Service, Ticket and Invoice Management System written in PHP +
+
+

ww1game WIP

+ SDL2 2D arcade WW1 themed game +
+
+
+ + + -- cgit v1.2.3