PeerTube 8.0: Team channel management and new Lucide player

Key points:
  • New Lucide player theme with a minimalist and modern design.
  • Improvements to video import with automatic retries in case of failures.
  • Ability to delegate storyboard generation to remote servers.
  • Roadmap 2026: Background playback and Studio mode on mobile

peertube logo

Recently, The Framasoft team has officially announced the release of PeerTube 8.0The new major version of its federated and decentralized video platform. This update comes after a year of intensive development focused on professionalizing the tool, offering critical solutions for organizations and media outlets seeking an alternative to giants like YouTube or Vimeo.

This release focuses on two fundamental pillars: improving the viewing experience with a cleaner interface and, most importantly, facilitate teamwork through new collaborative management toolsFurthermore, the import processes and backend performance have been improved, solidifying PeerTube as a robust option for large-scale video hosting.

Main new features of PeerTube 8.0

In this new version of PeerTube 8.0, the first new feature that users will notice is the complete redesign of the player interface Of video. PeerTube 8.0 introduces the new theme "Lucide"A modernized look that opts for thinner lines and discreet buttons so that attention is focused exclusively on the content.

And is that Unnecessary visual elements have been removed and the technical information has been reorganizedFor example, the volume button now hides the level bar by default, and P2P connection data has been moved to the "Stats for Nerds" menu, accessible by right-clicking. However, for those who prefer classic aesthetics, the platform allows you to revert to the previous topic and configure the design not only globally, but also individually for specific channels or videos.

player_stats-for-nerds

Collaborative management: teams and roles

Another new feature introduced in PeerTube 8.0 is one of the most requested features by communities and organizations. PeerTube 8.0 enables collaborative channel managementallowing multiple accounts to manage the same space without needing to share access credentials, something that previously represented a security risk and an operational bottleneck.

There are now two categories of members: the owner and the editors. Editors have the ability to upload videos, manage playlists, moderate comments, and edit channel information.However, they cannot delete the channel or add new administrators. This is ideal for media outlets or groups where several people need to publish content independently but in a controlled manner.

Peertube 8 - Lucide Theme

Improvements to import and backend

Under the hood, the system for importing videos from other platforms has become much more adaptable, as now A feature has been added to automatically retry failed imports.This is crucial when syncing large channels from YouTube or Twitch and the connection drops. Administrators can now view detailed status updates for these operations and configure automatic retry intervals.

Another important technical improvement is the ability to delegate the generation of storyboards to remote executorsGenerating those preview thumbnails that appear when you hover over the timeline consumes a lot of resources; now, this load can be transferred to another server to avoid overloading the main PeerTube instance.

The future: PeerTube in 2026

Looking ahead, the team has moved forward with its plans for next year, focusing on the mobile experience. The official app is expected to support background playback by early 2026.In addition to incorporating a "Studio" mode for creators and support for live streaming, it closes the functional gap with proprietary platforms.

Finally, if you are interested in knowing more about it, you can consult the details in the following link

Installing and updating PeerTube 8.0

Unlike a desktop application, PeerTube is server software. The most recommended and standard way to deploy or update a PeerTube instance is by using Docker and Docker Compose.

If you are already an administrator of an instance and want to upgrade to version 8.0, you must first go to the directory where your docker-compose.yml file is located. It is vital that you back up your database and configuration files before proceeding.

To update, first download the latest images from the repository:

sudo docker-compose pull

Once downloaded, you must stop the service, update the containers, and restart them. The following command will recreate the containers with the new version:

sudo docker-compose up -d

If you are performing a clean installation on a fresh server (Ubuntu/Debian), the process requires first installing Docker and then obtaining the official configuration files. You can start the basic installation with this command sequence:

sudo apt update sudo apt install curl curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh mkdir -p /opt/peertube cd /opt/peertube curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/master/support/docker/production/docker-compose.yml > docker-compose.yml curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/master/support/docker/production/.env > .env

After downloading the files, you'll need to edit the .env file to configure your domain and database credentials before running `docker-compose up -d`. You can find the complete migration and setup guide in the official documentation. The link is this.