logo

cross-unix-documentation

documentation of similarities and (noteworthy) differencies between Unix systems git clone https://hacktivis.me/git/cross-unix-documentation.git

lrc.5x (1695B)


  1. .\" This file is part of Cross Unix Documentation
  2. .\" Copyright © 2019-2021 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
  3. .\" SPDX-License-Identifier: CC-BY-4.0
  4. .Dd 2021-04-18
  5. .Dt LRC 5x
  6. .Os
  7. .Sh PROLOG
  8. This manual page is part of
  9. .Lk https://hacktivis.me/git/cross-unix-documentation "Cross-Unix Documentation"
  10. which is an attempt to provide documentation of similarities and (noteworthy) differencies between Unix-like systems.
  11. To be used as an addition to the POSIX standard.
  12. .Sh NAME
  13. .Nm lrc
  14. .Nd Lyrics file format
  15. .Sh DESCRIPTION
  16. .Nm
  17. is a simple file format comparable to srt but made for lyrics instead.
  18. Square and angle brackets are used to enclose metadata.
  19. .Ss Header
  20. ID tags that may appear before the lyrics, some players might not recognise this or simply ignore them.
  21. .Bl -tag -compact -width Ds
  22. .It ar
  23. Artist(s) of the song
  24. .It al
  25. Album of the song
  26. .It ti
  27. Title of the song
  28. .It au
  29. Author of the song
  30. .It length
  31. Lenght of the song
  32. .It by
  33. Creator of the
  34. .Nm
  35. file
  36. .It offset
  37. Overall timestamp adjustment in milliseconds, + shifts times up, - shifts down
  38. .It re
  39. Program that created the
  40. .Nm
  41. file
  42. .It ve
  43. Version of the program
  44. .El
  45. .Ss Lyrics
  46. They start with a timestamp in minutes:seconds.hundredths of a second enclosed in square brackets.
  47. An enhancement also allows to enclose timestamps in the middle of lines into angle brackets.
  48. .Sh EXAMPLES
  49. .Bd -literal
  50. [ar:Chubby Checker oppure Beatles, The]
  51. [al:Hits Of The 60's - Vol. 2 – Oldies]
  52. [ti:Let's Twist Again]
  53. [au:Written by Kal Mann / Dave Appell, 1961]
  54. [length:2:23]
  55. [00:12.00]Naku Penda Piya-Naku Taka Piya-Mpenziwe
  56. [00:15.30]Some more lyrics ...
  57. \&...
  58. .Ed
  59. .Sh SEE ALSO
  60. .Lk https://en.wikipedia.org/wiki/LRC_(file_format)