Monday, April 18, 2022

Minette Elevator Tripod S-3, made in Japan


Recently, I found this in a thrift store: A "Minette Elevator Tripod S-3", made in Japan. In the original packaging and like new.
Surprisingly, I can not find any real information on the web. Nobody offers this on Ebay, and a Google search finds almost nothing. One page suggests that it was made in the 60's (but I'm not basing any judgement on a single web page). In any case, it come from a time before there were UPC codes and when things were built differently. All steel, no plastic. 

It's not necessarily better than modern ones - just different. I love it for that!

If somebody has any information about this tripod, I would be really interested! Please contact me, or use the comments. Thanks!

 

Wednesday, January 12, 2022

How to create a video DVD in Linux from a HD video source

 These days, we are likely to record our videos in some high-definition format. Sometimes, however, it may still be convenient to provide the final cut of a movie on a DVD disk. This guide describes how to use your Linux PC to create a DVD disk from any source material.

The procedure consists of four simple steps:

  1. Rendering the source video to a lossless format
  2. Converting the result to a DVD compliant format (.vob)
  3. Authoring the DVD
  4. Burning the DVD
Step 1 is done in your favorite movie editor, steps 2 and 3 on the command line, and step 4 in a simple GUI. The goal here is to produce a simple DVD with a single video clip and without start menu, but with chapters.

1. Rendering the source video

Whatever video editor you are using, when you finished editing your video, you will probably render it to .mp4 or some other format. In principle, you could use this output file for the following procedure. However, to get the best DVD quality, it is helpful to render to a lossless format.
I am creating and editing my videos in Kdenlive and save the (intermediate) result with the lossless codec HUFFYUF.


Please note, that these files will be huge. A 2-hour video in 720p at 24fps took 120 GB. But this is only a temporary file - after step 2, you can immediately delete it. The file that I created this way is named "myvideo.mkv".

2. Converting the result to a DVD compliant format (.vob)

In this step we convert the video to a DVD compliant format (mpeg2 with special settings). Make sure that ffmpeg is installed on your system (check with: "which ffmpeg"). 
Open a text/terminal window, go into the folder that contains your intermediate file (in my case: "myvideo.mkv") and run ffmpeg like this:

ffmpeg -i myvideo.mkv -target ntsc-dvd -maxrate 8000000 -b:v 4100000 output.vob

This will produce the file "output.vob" which is needed for the next step. The above command produces a DVD in NTSC format. If you need PAL format, just replace "ntsc-dvd" with "pal-dvd". 

A DVD can hold video files of up to approx. 4 GB. The size of the output file is adjusted with the value after "-b:v". Smaller values produce smaller files. It should be adjusted to achieve the largest possible file size, while not exceeding 4.4 GB. The value of 4100000 worked well for me and produced a 3.9 GB vob file for my 2-hour video. 

3. Authoring the DVD

In this step, the final DVD files will be produced and stored in the folder "mydvd". It requires to install "dvdauthor". If you don't need chapters on your DVD, just run
  
dvdauthor -o mydvd/ -t output.vob

where "output.vob" is the result from step 2.).
It is also possible to create chapters (usually a good idea!) with the "-c" option. The "-c" option is followed by a comma (,) separated list of chapter markers, where each has the form [[h:]mm:]ss. The seconds have to be specified, while the minutes and hours are optional.
Here is an example if you want chapters at 35 seconds, 5:03 minutes, 21:45 minutes, and at 1 hour 3 minutes and 15 seconds

dvdauthor -o mydvd/ -t -c 00,35,05:03,21:45,1:03:15 output.vob

Then the video format needs to be stored in a shell variable (replace "NTSC" with "PAL" if required).

export VIDEO_FORMAT=NTSC

And the following finalizes the DVD file structure.

dvdauthor -o mydvd/ -T

The folder "mydvd" contains now all files needed for the DVD.

4. Burning the DVD

In this last step, the DVD is burnt, using the GUI k3b. After starting "k3b", you select on the bottom "more actions..."


... and in the pull-down menu a "New Video DVD project".


On the new screen, click on the "VIDEO_TS" folder...


... and paste all files from the folder "mydvd/VIDEO_TS" into the right area.


Finally, press "Burn". And a little later you will have your DVD.



Thursday, November 4, 2021

How to post to Instagram from your PC in the browser

I do all my photo editing on the PC. But (by default), the Instagram web page doesn't let me post from the browser on the PC. However, there is a very simple work-around for this which I want to share here.


Step 1: Open the Instagram web page on your PC's browser & "Inspect"

I am using Chrome, but it should work for other browsers too. On the page do right-click with the mouse, and select "Inspect".


Step 2: Reload the page

Now, on the right side, you see the source code of the web page. Yes, it looks weird, but you can ignore this. On the left, you see the simulated view of an Android or Apple device - the specific device can be selected from the pull-down menu (but it does not really matter which one you pick). This view is, however, not yet complete (it's still missing the "+" button that you need to post). The trick is to "reload" the page.

Step 3: Post

After reloading the page, you find the menu buttons at the bottom, with the "+" button in the middle.

Click on this to open the file browser from which you select the image - the rest is just like on your cell phone or tablet: resize as desired, add text, and: post!

I hope this was helpful!











Monday, November 1, 2021

How to play Flash swf files in Ubuntu Linux (works also for Windows and Mac)

 A long time ago, I found a wonderful animation that was available as a flash .swf file. In those days, I was able to play this on my Linux computer in Firefox.

These days, however, Flash is no longer supported and my old instructions do not work anymore. It took me a while to find the solution. But it's really simple and I want to share it here.

A player for Adobe Flash content is still available at the Adobe web page. I just seems that they do not really promote it, but you find it here:  https://www.adobe.com/support/flashplayer/debug_downloads.html

What you need is the "Flash Player Projector content debugger". This is available or Windows, Mac, and, ... ,yes: Linux. It comes as a .tar.gz file. Now, you either already know what to do, or, if not, just follow these simple step-by-step instructions:

  • Open a terminal, and create a new directory, maybe "flash", and enter it
    mkdir flash
    cd flash
  • Copy your .swf file(s) into this directory (using command line or file browser) .
  • Also copy the file that you downloaded from Adobe "flash_player_sa_linux_debug.x86_64.tar.gz" into this directory.
  • Unpack the file
    tar -xf flash_player_sa_linux_debug.x86_64.tar.gz
    Or, from the file browser: right-click on the file, and "extract here".
    Now you have the unpacked file "flashplayerdebugger"
  • Play your .swf file 
    ./
    flashplayerdebugger my-flash-file.swf
    (of course, replace "my-flash-file.swf" with the name if your .swf file).
    The "./" is needed! Otherwise the system will not find the executable.
And maybe you were wondering what file I wanted to play? It's still available on the web, here: https://7chan.org/fl/src/independent_woman.swf  (right-click, and "save as")

(yes, it's singing cats!)



  

Monday, October 18, 2021

How to create a Windows bootable USB drive on Linux

This error gave me some headache:

Cannot find C:\sources\install.wim

That was the error I got after I inserting a freshly created USB stick with a Windows 10 disk image for installation on a new (empty) PC that my son just assembled.

  • What went wrong?
    The file "install.wim" has a size of 4.6 GB, which is too large for a USB drive formatted in FAT32.
  • The solution:
    Format your USB drive in exFAT.
Whether this was your problem or not, here are the instructions, how to create a USB drive on a Linux computer for installing Windows. I did this for Windows 10, but it should work for any other version. I used a Kubuntu 21.04 system, but it should also work on any other Ubuntu-based Linux distribution.


Step-by-Step Guide

There are two tasks to be done: First, format the USB drive to exFAT, and, second, install the Windows .iso file.


Formatting a USB drive to exFAT 

These simple steps are all done on the command line.
  1. Download the Windows .iso file from Microsoft
  2. The following procedure require the"exfat-utils" which were not installed by default on my Kubuntu 21.04. You can install these from your software center (Discover, Muon, or whatever you prefer) or from the command line:         sudo apt install exfat-utils
  3. Insert the USB stick (at least 8GB) in your Linux system and mount it (e.g. from the file manager).
  4. Find the device ID of the USB stick. There are many ways how to do this. I use
    df -m
    from the command line. It displays all available filesystems, their status and their IDs  If you compare the output of this command before and after mounting the USB stick, you can identify the USB stick. For me it is: 
    /dev/sdb1   14798   5574  9224  38% /media/username/9B62-A3DF
    So, the device ID is "/dev/sdb1".  Sometimes my USB drives are also mounted as "/dev/sdc1". Remember this device ID!
  5. Unmount the USB drive, either from the filemanager (right click, "safely remove") or from the command line (replace "/dev/sdb1" with your device ID, if different):
    umount /dev/sdb1 
  6. Format the USB drive to ExFat (again, replace "/dev/sdb1" with your device ID, if different):
    sudo mkfs.exfat /dev/sdb1
  7. Mount the freshly formatted USB drive (you may have to remove and re-insert it).


Install the Windows .iso File

Now, there are different options, how to install the Windows .iso file on the USB drive, either using the File Manager, or the "unetbootin" app. (Of course, you only need to do one of the two).
  1. I prefer using the File Manager, which does not require to install any additional software. For this, open the Folder in which you stored the Windows .iso file that you got from Microsoft. Right-click on the .iso file and select "Mount ISO". A new entry will show up on the left bar in the File Manager (with a weird name). Click on this, and the File Manager will display the content of the .iso file
     

    In a second instance of the File Manager, open the (empty, freshly formatted) USB drive. Then, using the mouse, select all the files from the .iso and copy them over to the USB drive. This will take a few minutes (after all these are >5 GB).
    The following  is not necessary, but as a cross check you may want to enter the folder "sources", hover the mouse over the file "install.wim" and confirm that its size is 4.6 GB.


  2. Alternatively, you can get "unetbootin" from here: https://unetbootin.github.io/. Download the version for your OS (for me it was "Linux", "64 bit binary"). In my case, the downloaded file has the name "unetbootin-linux64-702.bin" (which may differ for future releases) and it's stored in the directory "~/Download". After mounting your USB drive, you run:
    sudo ~/Downloads/unetbootin-linux64-702.bin
    During startup, I get some error messages mentioning "Arch Linux" and "mtools" which I just ignore (just press "ok"). This opens the following window.
    Here, you select (1.) "DiskImage", (2.) select the Windows .iso file, select (3.) "USB Drive" and (4.) your drive ID ("/dev/sdb1" or correspondingly), and (5.) press "OK".
This worked for me, and my son is now happily running Windows on his new PC.
Please let me know in the comments, if it helped you or if you ran into any problems.

Tuesday, October 12, 2021

Building the Dewey Drone from "Silent Running" (1972) - Part VI: Arm and Electronics


Previous posts in this series: 


Dewey's Arm

Dewey's original arm is a rather complicated construction. Some photos showing many details can be found on this page. And here is an image that I found somewhere else.


Recreating all these details is beyond the scope of this project. I'm still sticking to 3/16" plywood, and try to come up with something that somehow includes the main features of the original.

Here are the pieces, cut with a laser cutter (plus two wooden rods of 3/8" diameter), partially assembled,


... and painted.


The full arm assembled.


To recreate the scene where they are playing cards,
 

I glued these five cards,


so my Dewey can hold them.





Dewey's Watering Can

At a few occasions in the movie, Dewey is seen to hold a watering can, like here.


Luckily, the image on the watering is available on the web, hand dawn by Karl Tate and posted on Flickr. I started with tomato can, covered with a thin sheet of cardboard. I also used the cardboard to create a narrow cone.






That's my version of Dewey's can.

Dewey in my Yard

And here he is, having fun in the yard.







 

Friday, September 3, 2021

A Replica of the HAL 9000 Punch Card

In "2001: A Space Odyssey" (at about 1h10), HAL 9000 just predicted the 100% failure of the AE-35 unit within the next 72 hours. To discuss this with Frank Poole, Dave Bowman asks HAL to provide a hard copy - and we see the punch card emerging on the left side.


Here are two close-ups.

 

That's not good enough for making a replica. And it seems that no further details about this punch card are known, from the movie and/or it's making-of. 
But internet searches give some results:
  • Master Replicas has produced replicas of these punch cards which are sold at toynk.com and at amazon.com for $34 (for a set of five cards). They say these are officially licensed from Warner Bros.
  • At yourprops.com, there are two users who present identical punch cards, which differ somehow from the Master Replica version (here and here).

I decided to base my version on the Master Replica version.

With the open-source desktop publishing software Scribus, I proceed as follows:

  • The card itself is supposed to be 3" x 5", so I make a file of 4" x 6" (which can be printed e.g. at Walgreens on 4" x 6" photo paper). 
  • The HAL 9000 logo is made using the font "GrotesqueNo9T" which is manually outlined in Scribus with 2.5% linewidth, at 31pt.
  • For the computer/typewriter font, I am using Artisan12 at 7pt. 
  • I do not have a paper punch for the rectangular holes, so I print those as grey fields.

And here is my result: 


It will be displayed next to my HAL 9000 computer, the Instructions for the Zero-Gravity Toilet, and the 2001 Food Trays.