### Applicazioni Confermate e Non Supportate Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/it-IT/full_description.txt Un elenco di applicazioni con cui JamesDSP ha confermato il funzionamento e quelle che presentano problemi o non sono supportate senza modifiche aggiuntive. ```it Applicazioni confermate: * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch Applicazioni non supportate: * Spotify (nota: la patch Spotify ReVanced è necessaria per supportare Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Spotify Patching Guide Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/README.md Instructions on how to patch the Spotify application to work with RootlessJamesDSP. This involves using the ReVanced Manager to enable the 'Remove screen capture restriction' patch. ```APIDOC Spotify Patching Guide: Purpose: Enables Spotify compatibility with RootlessJamesDSP by removing screen capture restrictions. Dependencies: ReVanced Manager APK. Steps: 1. Download and install the ReVanced Manager APK from the official GitHub releases. 2. Install the unpatched Spotify app. 3. Open ReVanced Manager. 4. Select Spotify from the app list. 5. Enable the 'Remove screen capture restriction' patch. 6. Start the patching process. 7. Install the patched Spotify APK. Usage: After patching, Spotify can be used with RootlessJamesDSP. Limitations: - If the patched app crashes or malfunctions, it might be due to app-specific signature checks or anti-tampering measures requiring additional custom patches. ``` ```APIDOC Patching Other Unsupported Apps: Purpose: Applies the universal 'Remove screen capture restriction' patch to other applications. Dependencies: ReVanced Manager APK. Steps: 1. Download and install the ReVanced Manager APK. 2. Open ReVanced Manager and navigate to Settings. 3. Enable 'Show universal patches'. 4. Go to the Patches tab. 5. Tap 'Select an app' and choose the 'Storage' action button. 6. Select the desired APK file. 7. Enable the 'Remove screen capture restriction' patch. 8. Start the patching process and install the patched APK. Important Considerations: - Uninstall the unpatched version of the app before installing the patched version to avoid signature conflicts. - Apps using the native AAudio C++ API for playback may not be compatible with this patch. - If the patched app exhibits issues, it may require custom patches to disable anti-tampering mechanisms. ``` -------------------------------- ### Aplicativos Não Suportados Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/pt-BR/full_description.txt Lista de aplicativos que são conhecidos por não funcionarem corretamente com o JamesDSP, ou que requerem soluções alternativas. ```pt * Spotify (Nota: patch do Spotify ReVanced é necessário para suportar o Spotify) * Google Chrome * SoundCloud * ... ``` -------------------------------- ### CMake Project Setup and Library Creation Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/app/src/main/cpp/libjamesdsp-wrapper/CMakeLists.txt Configures the CMake project for CXX languages and defines the jamesdsp-wrapper shared library. It uses file globbing to find all .cpp and .h files recursively within the current directory and its subdirectories. ```cmake project(jamesdsp-wrapper LANGUAGES CXX) file(GLOB_RECURSE SOURCE_FILES CONFIGURE_DEPENDS ${CMAKE_CURRENT_LIST_DIR}/*.cpp ${CMAKE_CURRENT_LIST_DIR}/*.h) add_library( jamesdsp-wrapper SHARED ${SOURCE_FILES} ) ``` -------------------------------- ### Crashlytics Connector CMake Setup Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/app/src/main/cpp/libcrashlytics-connector/CMakeLists.txt Configures the CMake project for the crashlytics-connector library. It defines the project name, languages, and sets up a shared library with specified source files. It also finds and links the NDK's log library. ```cmake project(crashlytics-connector LANGUAGES CXX) add_library( # Sets the name of the library. crashlytics-connector # Sets the library as a shared library. SHARED # Provides a relative path to your source file(s). ${CMAKE_CURRENT_LIST_DIR}/crashlytics.h ${CMAKE_CURRENT_LIST_DIR}/Log.h ${CMAKE_CURRENT_LIST_DIR}/Log.cpp ) find_library( # Sets the name of the path variable. log-lib # Specifies the name of the NDK library that # you want CMake to locate. log) target_link_libraries( # Specifies the target library. crashlytics-connector # Links the target library to the log library # included in the NDK. ${log-lib}) ``` -------------------------------- ### Aplicativos Confirmados Funcionando Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/pt-BR/full_description.txt Lista de aplicativos que foram testados e confirmados como funcionando corretamente com o JamesDSP. ```pt * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch * ... ``` -------------------------------- ### Integrazione AutoEQ con JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/it-IT/full_description.txt Descrive come utilizzare l'integrazione AutoEQ all'interno di JamesDSP per importare profili di risposta in frequenza e ottenere un suono più neutro, correggendo la risposta delle cuffie. ```it Vai a "equalizzatore a risposta arbitraria > risposta in ampiezza > profili AutoEQ" per iniziare. ``` -------------------------------- ### Aplicaciones Funcionales Confirmadas Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/es-ES/full_description.txt Se ha confirmado que James DSP funciona correctamente con una variedad de aplicaciones de reproducción de audio y streaming. ```es * YouTube * YouTube Música * Amazon Música * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sv-SE/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/fa-IR/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Aplicaciones No Soportadas y Soluciones Alternativas Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/es-ES/full_description.txt Ciertas aplicaciones, como Spotify y Google Chrome, no son compatibles directamente con James DSP debido a mecanismos de captura de audio o reproducción acelerada por hardware. Se mencionan soluciones alternativas como parches para Spotify. ```es * Spotify (Nota: Se requiere un parche ReVanced de Spotify para soportar Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/az-AZ/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sl-SI/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/el-GR/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/bg/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/hi-IN/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/da-DK/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/fi-FI/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/he-IL/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/lv/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/no-NO/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/en-US/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/lt-LT/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/hr-HR/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/hu-HU/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/af/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Effetti Audio Supportati da JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/it-IT/full_description.txt Elenco degli effetti audio implementati in JamesDSP, che consentono una personalizzazione avanzata dell'esperienza sonora su Android. ```it * Limitatore * Controllo del guadagno in uscita * Compressore della gamma dinamica automatico * Incremento dinamico dei bassi * Equalizzatore FIR interpolante * Equalizzatore a risposta arbitraria (equalizzatore grafico) * ViPER-DDC * Convolutore * DSP a modifica diretta (motore di scripting per effetti audio) * Modellazione analogica * Espansore sonoro * Crossfeed * Effetto stanza virtuale (riverbero) ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sk/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Apps Confirmed Working with JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sr/full_description.txt Provides a list of applications that have been confirmed to work correctly with Rootless JamesDSP. This list helps users identify compatible applications for audio processing. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Limitazioni di JamesDSP Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/it-IT/full_description.txt Dettagli sulle limitazioni note di JamesDSP, incluse le applicazioni che potrebbero non essere elaborate correttamente e i conflitti con altre app di effetti audio. ```it * Le applicazioni che bloccano l'acquisizione interna dell'audio rimangono non elaborate (ad esempio, Spotify, Google Chrome). * Le applicazioni che utilizzano alcuni tipi di riproduzione hardware accelerata possono causare problemi e devono essere escluse manualmente (ad esempio, alcuni giochi Unity). * Non può coesistere con (alcune) altre applicazioni di effetti audio (ad esempio, Wavelet e altre applicazioni che fanno uso dell'API Android "DynamicsProcessing"). ``` -------------------------------- ### Confirmed Working Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/ca/full_description.txt Provides a list of applications that have been confirmed to work with JamesDSP. ```en * YouTube * YouTube Music * Amazon Music * Deezer * Poweramp * Substreamer * Twitch ``` -------------------------------- ### Limitações Conhecidas Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/pt-BR/full_description.txt O JamesDSP possui algumas limitações que podem afetar a experiência do usuário. É importante estar ciente de quais aplicativos podem não ser processados corretamente ou podem causar conflitos. ```pt * Aplicativos que bloqueiam a captura interna de áudio permanecem sem processamento (por exemplo, Spotify, Google Chrome) * Aplicativos usando alguns modos de reprodução acelerada por HW podem causar problemas e precisar ser excluído manualmente (por exemplo, alguns jogos Unity) * Não é possível coexistir com (poucos) outros aplicativos de efeito de áudio (por exemplo, Wavelet e outros aplicativos que utilizam a API do Android "DynamicsProcessing") ``` -------------------------------- ### Integración con AutoEQ Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/es-ES/full_description.txt James DSP se integra con AutoEQ, permitiendo a los usuarios importar respuestas de frecuencia para corregir los auriculares a un sonido neutro. Esta función se accede a través de la configuración del ecualizador de respuesta arbitraria. ```es Vaya a 'ecualizador de respuesta arbitraria > respuesta de Magnitud > perfiles AutoEQ' para empezar. ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/af/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sl-SI/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sv-SE/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/az-AZ/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/fa-IR/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/fi-FI/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/bg/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/da-DK/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/lv/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/no-NO/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Unsupported Apps Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/lt-LT/full_description.txt Lists applications that are known to have issues or are unsupported by JamesDSP without specific workarounds. ```en * Spotify (Note: Spotify ReVanced patch is required to support Spotify) * Google Chrome * SoundCloud ``` -------------------------------- ### Translation and Language Support Source: https://github.com/timschneeb/rootlessjamesdsp/blob/master/fastlane/metadata/android/sk/full_description.txt Information on how to contribute to the translation of the Rootless JamesDSP application. It provides a link to the Crowdin project and instructions for requesting new languages. ```en Please help us translate this app here: https://crowdin.com/project/rootlessjamesdsp To request a new language that isn't enabled on Crowdin yet, please open an issue here on GitHub and I will turn it on. ```