MediaWiki API result

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "lecontinue": "20220816165241|26",
        "continue": "-||"
    },
    "query": {
        "logevents": [
            {
                "logid": 36,
                "ns": 0,
                "title": "Compile FreeBSD",
                "pageid": 35,
                "logpage": 35,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2024-11-26T19:25:01Z",
                "comment": "Created page with \"Compiling on FreeBSD  Install the required dependencies:      sudo pkg install cmake git boost-libs libcdio libmtp libgpod  Compile and install:      git clone --recursive https://github.com/strawberrymusicplayer/strawberry     cd strawberry     mkdir build     cd build     cmake ..     make -j$(nproc)     sudo make install  (If you already did `git clone`, do `git pull` to make sure you have the latest code).\""
            },
            {
                "logid": 35,
                "ns": 0,
                "title": "Playing without resampling",
                "pageid": 34,
                "logpage": 34,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2024-06-09T11:17:04Z",
                "comment": "Created page with \"For \"bit perfect\" playback, make sure the audio normalization, equalizer and bs2b is disabled.  You can check the sample rate and bit depth played with the following command:      tail -f /proc/asound/card0/pcm0p/sub0/hw_params\""
            },
            {
                "logid": 34,
                "ns": 0,
                "title": "Test play audio files",
                "pageid": 33,
                "logpage": 33,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2024-06-08T22:52:39Z",
                "comment": "Created page with \"Using gst-play-1.0:      gst-play-1.0 --use-playbin3 --audiosink=\"alsasink\" /file/path/filename.flac   Using gst-launch-1.0:      gst-launch-1.0 filesrc location=/file/path/filename.flac ! decodebin ! audioconvert ! alsasink\""
            },
            {
                "logid": 33,
                "ns": 0,
                "title": "Ubuntu PPA",
                "pageid": 32,
                "logpage": 32,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2024-06-05T20:15:58Z",
                "comment": "Created page with \"For the newest version on Ubuntu you can use our PPA repository, add it with the following commands:      sudo add-apt-repository ppa:jonaski/strawberry     sudo apt update     sudo apt install strawberry  For the latest development changes you can use ppa:jonaski/strawberry-unstable instead.\""
            },
            {
                "logid": 32,
                "ns": 0,
                "title": "Disable Pipewire",
                "pageid": 31,
                "logpage": 31,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2024-05-30T20:25:45Z",
                "comment": "Created page with \"Disable pipewire on Linux:      sudo systemctl disable --global pipewire     systemctl --user disable --now pipewire.{socket,service}     killall pipewire-pulse  Enable pipewire again:      sudo systemctl enable --global pipewire     systemctl --user enable --now pipewire.{socket,service}\""
            },
            {
                "logid": 31,
                "ns": 0,
                "title": "Build macOS",
                "pageid": 30,
                "logpage": 30,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2023-09-05T00:16:08Z",
                "comment": "Created page with \"Building on macOS   == Install xcode tools ==      xcode-select --install   == Checkout code ==      mkdir -p ~/build     cd ~/build     git clone https://github.com/strawberrymusicplayer/strawberry     cd strawberry     mkdir build     cd build  (If you already did `git clone`, do `git pull` to make sure you have the latest code).  == Configure build ==      cmake --log-level=\"DEBUG\" -S ../strawberry -B . -DCMAKE_BUILD_TYPE=Debug -DBUILD_WITH_QT6=ON -DUSE_BUNDLE=OFF -DC...\""
            },
            {
                "logid": 30,
                "ns": 0,
                "title": "Increase inotify watches",
                "pageid": 29,
                "logpage": 29,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2023-05-02T11:43:21Z",
                "comment": "Created page with \"On Linux, the collection watcher uses inotify to monitor any external changes to files, it is important to configure enough inotify watches.  To prevent a situation where Strawberry fails to watch all directories, it is recommended to increase the default watches limit (to, say, 512K):  Add the following line to either /etc/sysctl.conf file or a new *.conf file (e.g. inotify-watch.conf) under /etc/sysctl.d/ directory:      fs.inotify.max_user_watches = 524288  Then run t...\""
            },
            {
                "logid": 29,
                "ns": 0,
                "title": "Accessing the database",
                "pageid": 28,
                "logpage": 28,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2022-08-16T16:53:23Z",
                "comment": "Created page with \"The database is in a different location based on OS.  == Linux and other Unix systems (except macOS) ==  To access the database open a terminal and type:      sqlite3 ~/.local/share/strawberry/strawberry/strawberry.db   == macOS ==  To access the database open a terminal and type:      sqlite3 ~/Library/Application\\ Support/Strawberry/Strawberry/strawberry.db   == Windows ==  To access the database, open a command prompt, and type:      cd \"\\%PROGRAMFILES%\\Strawberry Mus...\""
            },
            {
                "logid": 28,
                "ns": 0,
                "title": "Releasing a new version",
                "pageid": 27,
                "logpage": 27,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2022-08-16T16:53:05Z",
                "comment": "Created page with \"Creating a new release  These instructions are intended for Strawberry developers who want to release a new version.  == Checklist ==  # Make sure all critical issues reported on GitHub, or on the forum are solved. # Make sure all builds are successful on GitHub, and on Buildbot. # Ideally wait at least 1-2 weeks after larger changes to allow testing. # Make sure all languages from Zanata that are 90% or more complete are included.  == Create release ==  # Update the Cha...\""
            },
            {
                "logid": 27,
                "ns": 0,
                "title": "Installing GStreamer Spotify plugin",
                "pageid": 26,
                "logpage": 26,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jonas",
                "timestamp": "2022-08-16T16:52:55Z",
                "comment": "Created page with \"To play spotify songs you need a gstreamer spotify plugin from the gst-plugins-rs package usually not available on most systems. Also, currently it is necessary to use a modified version of the plugin.      git clone https://gitlab.freedesktop.org/kingosticks/gst-plugins-rs     cd gst-plugins-rs     git checkout spotify-uri-handler     cargo cbuild --release -p gst-plugin-spotify     sudo cp ./target/x86_64-unknown-linux-gnu/release/libgstspotify.so /usr/lib64/gstreamer-...\""
            }
        ]
    }
}