KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
5.2KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio";
  3. $PAGE_TYPE = "NONKXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Documentation", "/Documentation", "/Documentation:Manual:latency");
  5. $PAGE_SOURCE_2 = ARRAY("Documentation", "Manual", "Latency compensation and xrun reduction tips");
  6. include_once("includes/header.php");
  7. ?>
  8. <div class="level1">
  9. </div>
  10. <h2><span name="compensating_for_loopback_latency" id="compensating_for_loopback_latency">Compensating for loopback latency</span></h2>
  11. <div class="level2">
  12. <p>
  13. Although latency mostly refers to buffer size which delays immediate feedback of input, there is additional latency due to the basic processing of your audio interface. There is no way to reduce this “loopback” latency, but its existence will affect the timing of recorded overdubs. To address this, you can tell programs what the delay amount is so that compensation can be made, i.e. the recorded audio will be adjusted in time to account for this delay. Software alone cannot discover what the loopback latency is, so the following procedure is needed to determine the amount of compensation required:
  14. </p>
  15. <p>
  16. You will need a loopback cable capable of connecting your audio device&#039;s physical input to its physical output.
  17. </p>
  18. <p>
  19. 1 - Connect your (mic) input to your (headphone) output with the loopback cable
  20. </p>
  21. <p>
  22. 2 - Start JACK with known good settings
  23. </p>
  24. <p>
  25. 3 - Open a terminal and run jack_iodelay. It will print &#039;Signal below threshold…&#039; until we make the JACK connections
  26. </p>
  27. <p>
  28. 4 - Use Catia or Claudia to connect the system capture_1 to &#039;jack_delay in&#039; and connect &#039;jack_delay out&#039; to the system playback_1 port
  29. </p>
  30. <p>
  31. 5 - With both physical and JACK connections made, jack_iodelay should print output such as &#039;use X for the backend arguments -I and -O&#039;
  32. </p>
  33. <p>
  34. 6 - In the terminal, use ctrl-C to stop jack_iodelay
  35. </p>
  36. <p>
  37. 7 - In Cadence or Claudia, open the JACK settings and enter the value X from jack_iodelay for both the the input and output extra latency values
  38. </p>
  39. <p>
  40. 8 - Engage the new JACK settings with the “Switch Master” button. If you re-run the above test there should be no additional loopback latency.
  41. </p>
  42. <p>
  43. This information is used to tell programs how to adjust recordings so that the recorded result will line up precisely with how the original performance aligned with the previous tracks.
  44. </p>
  45. <p>
  46. Because these settings are not saved in the software to go with the interface choice, you&#039;ll need to change them every time you switch devices. The easiest way to do this is to have Claudia sessions for each device so all the settings are saved together.
  47. </p>
  48. </div>
  49. <h2><span name="minimizing_xruns" id="minimizing_xruns">Minimizing xruns</span></h2>
  50. <div class="level2">
  51. </div>
  52. <h3><span name="disable_wireless_internet" id="disable_wireless_internet">Disable wireless internet</span></h3>
  53. <div class="level3">
  54. <p>
  55. Wifi adapters have been known to cause random xruns. Some laptops have an external hardware switch to disable wifi. Otherwise, uncheck “enable wireless” in the KDE system tray&#039;s network control. If primarily using ethernet, consider disabling wifi (aka 802.11 a/b/g/n) in the BIOS or UEFI menu.
  56. </p>
  57. </div>
  58. <h3><span name="close_unnecessary_programs" id="close_unnecessary_programs">Close unnecessary programs</span></h3>
  59. <div class="level3">
  60. <p>
  61. In general, avoid running unnecessary, CPU-intensive programs when recording.
  62. </p>
  63. <p>
  64. Many pop-up ads and popular web sites make use of Adobe Flash. If you have any browser tabs open, it only takes one to be using a little bit of Flash to cause a big loss of CPU, lower latency and more xruns. The easiest way to avoid this is to close any web browsers.
  65. </p>
  66. </div>
  67. <h3><span name="avoid_realtime_resampling" id="avoid_realtime_resampling">Avoid realtime resampling</span></h3>
  68. <div class="level3">
  69. <p>
  70. When using Digital Audio Workstations and similar apps such as samplers etc, it is recommended you convert any sound files you wish to import to use the same sample rate as the one you are using for JACK. Many apps let you import and use sound files of different sample rates to the one you are running JACK with but then attempt to resample the audio &#039;on-the-fly&#039; and this leads to xruns if your CPU cannot keep up.
  71. </p>
  72. <p>
  73. You can check the sample rate of audio files using your favourite media player such as smplayer (push CTRL+I when playing your file) or VLC (push CTRL+J) or you can find out from the terminal using mediainfo. soundkonverter and XCFA are good tools for batch conversion of audio files.
  74. </p>
  75. </div>
  76. <h3><span name="check_for_irq_conflicts" id="check_for_irq_conflicts">Check for IRQ conflicts</span></h3>
  77. <div class="level3">
  78. <p>
  79. Open a terminal and run:
  80. </p>
  81. <pre class="code">cat /proc/interrupts</pre>
  82. <p>
  83. Ensure that your audio driver is not sharing an IRQ with another device. Fixing this can be as simple as changing which port a USB audio device is using, but otherwise <a target="_blank" href="http://wiki.linuxaudio.org/wiki/system_configuration#solve_irq_conflict_by_unbinding_devices" class="wikilink1" target="_parent" title="system_configuration">see this guide to fixing IRQ conflicts.</a>
  84. </p>
  85. </div>
  86. <p><br/></p>
  87. <?php
  88. include_once("includes/footer.php");
  89. ?>