[Pkg-kde-extras] Bug#1116548: /usr/bin/kaffeine: Re: kaffeine: crashes while scheduling DVB-T2 recording in EPG after upgrade from Bookworm to Trixie

Thure Duehrsen T.Duehrsen at gmx.net
Fri Oct 3 18:52:44 BST 2025


Package: kaffeine
Version: 2.0.19-1
Followup-For: Bug #1116548
X-Debbugs-Cc: T.Duehrsen at gmx.net

Dear Maintainer,

One can work around the crash by inserting data for shows to be recorded directly into the database, as follows:

- Gather the following details for the recording:
  Name
  Channel
  Date and Time when the show begins, expressed in UTC
  Duration (hh:mm:ss)

- Find the channel from the list of channels:
  $ echo 'select name from channels order by name asc;' | sqlite3 ~/.local/share/kaffeine/sqlite.db

- Glean the format for entries:
  $ echo 'select * from RecordingSchedule order by Begin asc;' | sqlite3 ~/.local/share/kaffeine/sqlite.db
6|Die Unbeugsamen|3sat HD|2025-09-29T20:15:00ZZ|02:00:00|0||||||100|0
7|Unsere Geschichte - Als der Beat-Club den Norden rockte|NDR FS SH HD|2025-10-18T09:55:00ZZ|00:55:00|0|||2025-10-18T10:00:00Z|2025-10-18T10:45:00Z|00:45:00|10|0

- Then write your own INSERT statement.

$ sqlite3 ~/.local/share/kaffeine/sqlite.db
SQLite version 3.46.1 2024-08-13 09:16:08
Enter ".help" for usage hints.
sqlite> INSERT INTO RecordingSchedule
    (Name, Channel, Begin, Duration, Repeat, Priority, Disabled)
VALUES
    ('Re: Cosplay - Das Spiel mit einer anderen Identität',
     'arte HD',
     '2025-09-29T09:25:00ZZ',
     '00:30:00',
     0,
     100,
     0);
sqlite> select * from RecordingSchedule order by Begin asc;
8|Re: Cosplay - Das Spiel mit einer anderen Identität|arte HD|2025-09-29T09:25:00ZZ|00:30:00|0||||||100|0
6|Die Unbeugsamen|3sat HD|2025-09-29T20:15:00ZZ|02:00:00|0||||||100|0
7|Unsere Geschichte - Als der Beat-Club den Norden rockte|NDR FS SH HD|2025-10-18T09:55:00ZZ|00:55:00|0|||2025-10-18T10:00:00Z|2025-10-18T10:45:00Z|00:45:00|10|0
sqlite> ^D


-- System Information:
Debian Release: 13.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.12.48+deb13-amd64 (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages kaffeine depends on:
ii  iso-codes                4.18.0-1
ii  kinit                    5.116.0-1
ii  kio                      5.116.0-1
ii  libc6                    2.41-12
ii  libdvbv5-0t64            1.30.1-1
ii  libkf5configcore5        5.116.0-1
ii  libkf5configwidgets5     5.116.0-1
ii  libkf5coreaddons5        5.116.0-1
ii  libkf5dbusaddons5        5.116.0-1
ii  libkf5i18n5              5.116.0-1
ii  libkf5kiocore5           5.116.0-1
ii  libkf5kiofilewidgets5    5.116.0-1
ii  libkf5solid5             5.116.0-1
ii  libkf5widgetsaddons5     5.116.0-1
ii  libkf5windowsystem5      5.116.0-1
ii  libkf5xmlgui5            5.116.0-1
ii  libqt5core5t64           5.15.15+dfsg-6
ii  libqt5dbus5t64           5.15.15+dfsg-6
ii  libqt5gui5t64            5.15.15+dfsg-6
ii  libqt5sql5-sqlite        5.15.15+dfsg-6
ii  libqt5sql5t64            5.15.15+dfsg-6
ii  libqt5widgets5t64        5.15.15+dfsg-6
ii  libqt5xml5t64            5.15.15+dfsg-6
ii  libstdc++6               14.2.0-19
ii  libvlc5                  3.0.21-10
ii  vlc-plugin-base          3.0.21-10
ii  vlc-plugin-video-output  3.0.21-10

kaffeine recommends no packages.

Versions of packages kaffeine suggests:
pn  libdvdcss2  <none>

-- no debconf information


More information about the pkg-kde-extras mailing list