{"id":15033569,"url":"https://github.com/tracktion/tracktion_engine","last_synced_at":"2025-04-13T11:42:15.293Z","repository":{"id":37784197,"uuid":"156860418","full_name":"Tracktion/tracktion_engine","owner":"Tracktion","description":"Tracktion Engine module","archived":false,"fork":false,"pushed_at":"2025-04-10T17:30:34.000Z","size":1429226,"stargazers_count":1261,"open_issues_count":33,"forks_count":162,"subscribers_count":53,"default_branch":"develop","last_synced_at":"2025-04-10T18:54:32.254Z","etag":null,"topics":["audio","audio-processing","c-plus-plus","cpp","daw","framework","juce"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tracktion.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELIST.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-09T12:40:42.000Z","updated_at":"2025-04-10T17:48:22.000Z","dependencies_parsed_at":"2023-02-10T05:15:43.332Z","dependency_job_id":"e698963e-1e25-4c38-89ed-d7e0f4e63b04","html_url":"https://github.com/Tracktion/tracktion_engine","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tracktion%2Ftracktion_engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tracktion%2Ftracktion_engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tracktion%2Ftracktion_engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tracktion%2Ftracktion_engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tracktion","download_url":"https://codeload.github.com/Tracktion/tracktion_engine/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248709591,"owners_count":21149179,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","audio-processing","c-plus-plus","cpp","daw","framework","juce"],"created_at":"2024-09-24T20:21:46.278Z","updated_at":"2025-04-13T11:42:15.270Z","avatar_url":"https://github.com/Tracktion.png","language":"C++","readme":"![](tutorials/images/tracktion_engine_powered.png)\n\nmaster: [![Build](https://github.com/Tracktion/tracktion_engine/actions/workflows/build.yaml/badge.svg?branch=master)](https://github.com/Tracktion/tracktion_engine/actions/workflows/build.yaml)\n\ndevelop: [![Build](https://github.com/Tracktion/tracktion_engine/actions/workflows/build.yaml/badge.svg?branch=develop)](https://github.com/Tracktion/tracktion_engine/actions/workflows/build.yaml)\n[![codecov](https://codecov.io/gh/Tracktion/tracktion_engine/branch/develop/graph/badge.svg?token=jirhU03pQO)](https://codecov.io/gh/Tracktion/tracktion_engine)\n[![juce_compatability](https://github.com/Tracktion/tracktion_engine/actions/workflows/juce_compat.yaml/badge.svg)](https://github.com/Tracktion/tracktion_engine/actions/workflows/juce_compat.yaml)\n\n# N.B. Enterprise licensees, please check the terms of your license as it may not include v3. Please contact us for upgrade options\n\n# tracktion_engine\n##### Welcome to the Tracktion Engine repository!\nThe aim of Tracktion Engine is to provide a high level data model and set of classes for building sequence based audio applications. You can build anything from a simple file-player or sequencer to a full blown DAW.\n\nTake a look at the [features document](FEATURES.md) for the full range of features.\n\n##### Supported Platforms\n- macOS\n- Windows\n- Linux\n- Raspberry PI\n- iOS\n- Android\n\n*N.B. Tracktion Engine requires C++20*\n\n## Contents\n- [Getting Started](#getting-started)\n- [Examples](#examples)\n- [Tutorials](#tutorials)\n- [Documentation](#documentation)\n- [Benchmarks](#benchmarks)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Getting Started\nTracktion Engine is supplied as a `JUCE module` so it can easily fit in to an existing JUCE application. You'll find the module code under `modules/tracktion_engine`. Additionally, JUCE is added as a Git Submodule here in order to build the examples.\n\nTo start with, clone the repo and recurse the submodules:\n```\n$ git clone --recurse-submodules https://github.com/Tracktion/tracktion_engine.git\n```\n\n## Examples\nExample projects are located in `/examples`.\nThere are two main example projects, `DemoRunner` and `EngineInPluginDemo`. In each of these folder is a CMakeLists.txt file you can use to build them (or run the `build` script mentioned below).\n\n`DemoRunner` contains a number of app examples showcasing various Engine functionality.\n`EngineInPluginDemo` builds a plugin which contains Tracktion Engine and syncs the host timeline to the Edit's timeline.\n\nAdditionally there are `Benchmark` an `TestRunner` apps used by CI to test Engine functionality and performance.\n\n#### Scripts\nTo generate all the examples for the running platform use the script in `/tests`.\nThese are bash scripts so if you're on Windows you can use the `Git Bash` shell that comes with Git to run the following.\n```\n$ cd tests\n$ ./generate_examples\n```\n`generate_examples` will generate the IDE project files for you. Alternatively you can run the `build` script to build the examples as well, ready to run.\n\nOnce the example projects have been generated or built you can find them in `examples/example_name/build`.\n\n#### CMake\nAlternatively, you can run cmake in the root directory which will create a project with the `DemoRunner`, `EngineInPluginDemo`, `TestRunner` and `Benchmark` targets. E.g.\n```shell\ncmake -G \u003cgenerator_name\u003e -B build\n```\n\n## Tutorials\nOnce you're ready to dive in to the code, open the IDE files and have a read through the tutorials in `/tutorials`. You can view these on GitHub [here](/tutorials) to see the rendered Markdown.\n\n## Documentation\nWe are still in the process of fleshing out Doxygen formatted comments but the Doxygen generated documentation can be found here: https://tracktion.github.io/tracktion_engine/modules.html\n\n## Benchmarks\nBenchmarks are really for our own internal use but might be of interest to some people:\nhttps://tracktion.github.io/tracktion_engine/benchmarks.html\n\n## Contributing\nTracktion Engine is provided in JUCE module format, for bug reports and features requests, please visit the [JUCE Forum and post using the Tracktion Engine category](https://forum.juce.com/c/tracktion-engine) -\nthe Tracktion Engine developers are active there and will read every post and respond accordingly.\nWe don't accept third party GitHub pull requests directly due to copyright restrictions\nbut if you would like to contribute any changes please contact us.\n\n## License\nTracktion Engine is covered by a [GPL](https://www.gnu.org/licenses/gpl-3.0.en.html)/[Commercial license](https://www.tracktion.com/develop/tracktion-engine).\n\nThere are multiple commercial licensing tiers for Tracktion Engine, with different terms for each.\nFor prices, see the [Tracktion Developers Page](https://www.tracktion.com/develop/tracktion-engine).\n\n**N.B.** *Although Tracktion Engine utilises JUCE, it is not part of JUCE nor owned by the same company. As such it is licensed separately and you must make sure you have an appropriate JUCE licence from [juce.com](juce.com) when distributing Tracktion Engine based products. Similarly, Tracktion Engine is not included in a JUCE licence and you must get the above mentioned Tracktion Engine licence to distribute products.*\n\n___\nTracktion Engine utilises and contains copies of the following libraries. Please make sure you adhere to the license terms where necessary:\n- [rpmalloc](https://www.github.com/mjansson/rpmalloc) - Public domain\n- [moodycamel::ConcurrentQueue](https://www.github.com/cameron314/concurrentqueue) - Simplified BSD/BSL\n- [choc](https://www.github.com/Tracktion/choc) - ISC\n- [crill](https://www.github.com/crill-dev/crill) - BSL-1.0\n- [expected](https://www.github.com/TartanLlama/expected) - CC0 1.0\n- [libsamplerate](https://www.github.com/libsndfile/libsamplerate) - BSD-2-Clause\n- [nanorange](https://www.github.com/tcbrindle/NanoRange) - BSL-1.0\n- [rigtorp/MPMCQueue](https://www.github.com/rigtorp/MPMCQueue) - MIT\n- [magic_enum](https://www.github.com/Neargye/magic_enum) - MIT\n- [farbot](https://www.github.com/hogliux/farbot) - MIT\n- [doctest](https://www.github.com/doctest/doctest) - MIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftracktion%2Ftracktion_engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftracktion%2Ftracktion_engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftracktion%2Ftracktion_engine/lists"}