### Install syncedlyrics Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Install the syncedlyrics library using pip. ```bash pip install syncedlyrics ``` -------------------------------- ### Python lyrics search with options Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Search for lyrics using the syncedlyrics Python library with various options. This example demonstrates specifying plaintext-only search, a save path, and a specific provider. ```python # Or with options: syncedlyrics.search("...", plain_only=True, save_path="{search_term}_1234.lrc", providers=["NetEase"]) ``` -------------------------------- ### Search for lyrics via CLI Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Use the syncedlyrics command-line tool to search for lyrics. By default, it prefers time-synced lyrics but falls back to plaintext if none are found. Use --plain-only or --synced-only to enforce a specific type. ```bash syncedlyrics "SEARCH_TERM" ``` -------------------------------- ### Basic Python lyrics search Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Perform a basic search for lyrics using the syncedlyrics Python library. This function returns LRC formatted lyrics. ```python # This simple lrc = syncedlyrics.search("[TRACK_NAME] [ARTIST_NAME]") ``` -------------------------------- ### SyncedLyrics citation Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md A BibTeX entry for citing the syncedlyrics library in academic research. ```bibtex @misc{syncedlyrics, author = {Momeni, Mohammad}, title = {syncedlyrics}, year = {2022}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {\url{https://github.com/moehmeni/syncedlyrics}}, } ``` -------------------------------- ### Python lyrics search for enhanced format Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Search for word-by-word synchronized lyrics (karaoke format) if available using the syncedlyrics Python library. If the enhanced format is not found, it defaults to regular synced lyrics. ```python # Get a word-by-word (karaoke) synced-lyrics if available syncedlyrics.search("...", enhanced=True) ``` -------------------------------- ### Python lyrics search with translation Source: https://github.com/moehmeni/syncedlyrics/blob/main/README.md Retrieve lyrics along with a translation using the syncedlyrics Python library. The original and translated lyrics are separated by a newline character. ```python # Get a translation along with the original lyrics (separated by `\n`): syncedlyrics.search("...", lang="de") ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.