Skip to content

TinyPilot-specific build of a uStreamer Debian package

License

Notifications You must be signed in to change notification settings

tiny-pilot/ustreamer-debian

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ustreamer-debian

License: GPL v3 CircleCI

TinyPilot-specific build of a uStreamer Debian package

Updating to new uStreamer versions

When there are uStreamer releases that would benefit TinyPilot users, we need to update the TinyPilot uStreamer repos to pull in the changes and create a new Debian package. Note that we don't create Debian packages for every uStreamer change, as some uStreamer releases don't serve TinyPilot scenarios.

Review uStreamer's commit history

Before updating the uStreamer package, review uStreamer's commit history for anything that may impact TinyPilot scenarios.

Check the uStreamer README for any compatibility changes.

If the new version of uStreamer is a new major version, try and find out why the major version number increased.

Review all commits made to uStreamer since we last cut a release for any breaking changes or feature improvements. You can do this using a GitHub comparison, e.g., v5.43 to v6.11.

Check for any other obvious breaking changes by reviewing some of the major commit diffs.

Create a branch

If the new version of uStreamer doesn't have any obvious breaking changes, create a new uStreamer debian package in a development branch as follows.

First, sync tags of TinyPilot's fork of uStreamer with the upstream version

git clone git@github.com:tiny-pilot/ustreamer.git && \
  cd ustreamer && \
  git remote add upstream https://github.com/pikvm/ustreamer.git && \
  git fetch --tags upstream && \
  git push --tags origin

Then, create a new branch in this repository and update the ARG PKG_VERSION= line in Dockerfile to the desired uStreamer release tag.

Testing on device

Install the latest version of TinyPilot Pro on your test device and SSH into it.

Get the URL of the new debian package:

  1. Go to the CircleCI build for your branch.
  2. Click the "build_debian_package" CircleCI step.
  3. Go the the "Artifacts" tab.
  4. Copy the link to the armhf.deb file.

Download the new debian package on the test device:

# Replace the URL with the link to the `armhf.deb` package.
wget https://output.circle-artifacts.com/output/job/358d292c-6233-40c2-a31c-e6b3fcc1aced/artifacts/0/build/linux_arm_v7/ustreamer_armhf.deb

Then install the package with the following command:

sudo apt install -y ./ustreamer_*.deb

Capture a TinyPilot log to check the version of uStreamer that's running and make sure it's the version you expect.

Now perform a manual test of TinyPilot's video features (a subset of our manual release testing process) to make sure they still work as expected.

Note: these tests aren't OS dependent, but some steps assume the target machine is Ubuntu 22.04 for navigation and settings.

Reduce video frame rate (MJPEG)

  1. Go to System > Video settings
  2. Set FPS to 5
  3. Click “Apply”
  4. Verify that the video refreshes slower than it did previously

Reduce video quality (MJPEG)

  1. Go to System > Video settings
  2. Set JPEG quality to 10%
  3. Click “Apply”
  4. Verify that the image quality looks notably worse

Reset video settings

  1. Go to System > Video settings
  2. Click “Reset to Default” next to Frame Rate
  3. Click “Reset to Default” next to Quality
  4. Click “Apply”
  5. Verify that video quality and latency goes back to normal

Use H.264 compression

  1. Go to System > Video settings
  2. Select Streaming Mode of H.264
  3. Click “Apply”
  4. Verify that H.264 icon appears on the bottom left corner and that video functions

Verify audio plays

  1. In the target system, click the speaker icon in the upper right corner
  2. Adjust the volume on the target machine
  3. Verify that the confirmation beeps from changing the volume play through the local machine

Reduce video frame rate (H.264)

  1. Go to System > Video settings
  2. Set FPS to 5
  3. Click “Apply”
  4. Verify that the video refreshes slower than it did previously

Reduce video quality (H.264)

  1. Go to System > Video settings
  2. Set Bit Rate to 0.05 Mb/s
  3. Click “Apply”
  4. Verify that the image quality looks notably worse
    1. The difference is subtle. You might need to open a web browser in the target system to see the difference.

Reset video settings

  1. Go to System > Video settings
  2. Click “Reset to Default” next to Frame Rate
  3. Click “Reset to Default” next to Quality
  4. Click “Apply”
  5. Verify that video quality and latency goes back to normal

Change display settings

  1. On the target machine, navigate to its display settings
  2. Select a different resolution (e.g., 1280x720 at 60Hz)
  3. Click "Apply"
  4. Verify that the video resolution changes

Reset display settings

  1. On the target machine, navigate to its display settings
  2. Select the original resolution (e.g., 1920x1080 at 30Hz)
  3. Click "Apply"
  4. Verify that the video resolution changes back to the original settings

Measure latency

If the manual tests pass, measure the new latency:

  1. Connect TinyPilot to a device that has a display
  2. Mirror display between TinyPilot and the device's other monitor
  3. On the target device, visit a website that has a stopwatch with millisecond precision
  4. Take a photo that captures the TinyPilot client device's screen and the mirrored display in one photo
  5. Subtract the times to get the latency
  6. Repeat 3-4x to get an average

Create tickets

If we encounter any regression during the testing process, including a significant increase in latency, raise this with the product owner. The next steps would probably be one or more of these steps:

  1. See if we can fix the uStreamer regression and contribute it upstream
  2. Report the bug to uStreamer
  3. Accept the regression if it's minor

If the latency measurements indicate that latency has dropped by more than 5% compare to the previous uStreamer version, create some tickets.

  • Create a ticket to update the TinyPilot website with the new latency figure.
  • Create a ticket to include the latency improvements in the release announcement.

Publishing releases

We publish releases manually on Github. When we're ready to publish a new release, follow these steps:

Download Debian package files

  1. Go to the CircleCI build for the most recent master branch.
  2. Click the build_debian_package CircleCI step.
  3. Go the the "Artifacts" tab.
  4. Download all .deb* files.

Create a Github release

  1. Create a new Github release for ustreamer-debian.
  2. Make the release tag and title the version number and timestamp suffix from the `.deb`` files.
    • e.g., ustreamer_5.38-20230802141939_amd64.deb would have the tag 5.38-20230802141939.
  3. Click "Generate release notes."
  4. Upload the Debian package files you downloaded above.
  5. Click "Publish release."