Jump to content

Mikorist

👀
  • Broj sadržaja

    45451
  • Na DiyAudio.rs od

  • Broj dana (pobeda)

    577

Sve objavljeno od Mikorist

  1. http://www.imdb.com/title/tt0945513/
  2. kutije su vrh - sjajno
  3. ja koristim ReJig http://www.videohelp.com/tools/ReJig da napravim prvo jedan fajl. (VOB demultiplexing) ni manjeg programa ni boljeg za mene. radi i obrnuto (VOB multiplexing)
  4. odavde : http://www.videohelp.com/tools/sections/dvd-to-avi-divx-xvid
  5. Squeezebox Touch Tweak - ALSA Real-Time I spent some time trying out my ALSA real-time kernel mods on the Touch. I went though the steps to isolated the "audio threads", the "real-time clock IRQ", and the "spdif IRQ" and tried different values and different combinations. Much clearer vocals, more open and clean sound stage, lows go deeper and clearer...the difference is not subtle! Expect natural smoothness with a good sense of clarity, increased separation within the sound stage, vocals are clear without being harsh and everything sounds more realistic. The goal is to: [*]increase audio threads priority [*]prevent audio threads from sharing interrupt lines [*]adjust interrupts/processes according to their use Prerequisites: You must have a Network connection, you must know your Touch's IP address and you must navigate to Advanced~~~> Remote Login: Enable ssh Using the WinSCP tool from a Windows machine do the following steps 1~4. Click to Enlarge - Apply your Touch's IP address and enter the information as seen. Detailed steps for the mod. After WinSCP has started hit CTRL+T to open a console window then enter the information in yellow, Execute to apply. If you don't like it simply reboot and the values will revert back to the original.1) Find the IRQ number for the Real-Time process to change cat /proc/interrupts ~~~~~~~~~~~~~~~~~~~~~~~~~ 25: 0 - mxc_rtc <~~~~~~~Real time clock = IRQ25 47: 7 - spdif <~~~~~~~~Spdif = IRQ47 ~~~~~~~~~~~~~~~~~~~~~~~~~ 2) Find the process ID ps -e ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 ? 00:04:41 sirq-timer/0 <~~~~~~~~PID5 = Audio thread 11 ? 00:00:00 sirq-hrtimer/0 <~~~~~~PID11 = Audio thread 367 ? 00:00:00 IRQ-47 <~~~~~~~~~~PID367 = Spdif IRQ47 407 ? 00:00:00 IRQ-25 <~~~~~~~~~~~PID407 = Real time clock IRQ25 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3)Change the process priority chrt -f -p 93 11 <~~~~~~Audio thread chrt -f -p 91 5 <~~~~~Audio thread chrt -f -p 59 367 <~~~~~Spdif [see Fine Tuning section below for alternate suggested values] chrt -f -p 87 407 <~~~~~Real-Time Clock ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /root$ chrt -f -p 59 367 <~~~~~~Enter on command then Execute pid 367's current scheduling policy: SCHED_FIFO pid 367's current scheduling priority: 40 <~~~~~Old value pid 367's new scheduling policy: SCHED_FIFO pid 367's new scheduling priority: 59 <~~~~~New valuee ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4)Verify the change ps -eLo pid,cls,rtprio,pri,nice,cmd | grep -i "irq" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 FF 91 131 - [sirq-timer/0] 9 FF 89 129 - [sirq-tasklet/0] 11 FF 93 133 - [sirq-hrtimer/0] 49 FF 90 130 - [iRQ-34] 367 FF 59 99 - [iRQ-47] 407 FF 87 127 - [iRQ-25] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Set it and Forget it. ***Note: To make sure YOUR process ID's are the same on YOUR SB-Touch do steps 1 and 2 above first.*** 1) Navigate to the rcS file [etc/init.d/rcS] double clicking it will open it. 2) Enter the yellow portion below into the "rcS" file. 3) Save the file and close the window. 4) CTRL+T to open a command line window and type reboot [Execute] Click Image to Enlarge...How-To Visual Reference ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# Start wlan#/etc/init.d/wlan start <~~~~~Comment out ie [add # mark] this line to insure WiFi does not startiwconfig wlan0 txpower off <~~~~~~~Add this line to insure WiFi is off# Start Samba#if [ -x /etc/init.d/samba ]; then <~~~~~~Comment out these lines to prevent Samba from starting# /etc/init.d/samba start fi#Change priorities <~~~~Add these five lines at the bottomchrt -f -p 93 11chrt -f -p 91 5chrt -f -p 59 367chrt -f -p 87 407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Fine Tuning for Your SystemI encourage everyone to try different values for the SPDIF process ie "367". Apply the change as shown in step 3 above, the change takes affect immediately after you select Execute. The new value will stay in affect until either a reboot or a new value is entered.In some cases the vocals or higher octave notes may seem too focused, a lower value for the SPDIF process will resolve this...try 44, 48, or 53.One of these values is likely to suit your tastes and system best.Update: The folks at Squeezebox Forum came up with some very good supplements for this mod that really makes everything gel together nicely. See alsa_jive processes. These are the default priority settings for the Touch without the adjustments. The 40 value is a busy interrupt line with so many [27] processes sharing the same priority. Two processes are already called out as having higher priority. The IRQ34 interrupt which is for direct memory access, and the tasklet process which responds to IRQ requests and insures that tasklets are scheduled on time. Per FFADO IRQ Priorities suggestions the audio threads should be scheduled higher than the tasklet but still have unique values. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /root$ ps -eLo pid,cls,rtprio,pri,nice,cmd | grep -i "irq" 4 FF 40 80 - [sirq-high/0] 5 FF 40 80 - [sirq-timer/0] 6 FF 40 80 - [sirq-net-tx/0] 7 FF 40 80 - [sirq-net-rx/0] 8 FF 40 80 - [sirq-block/0] 9 FF 89 129 - [sirq-tasklet/0] 10 FF 40 80 - [sirq-sched/0] 11 FF 40 80 - [sirq-hrtimer/0] 12 FF 40 80 - [sirq-rcu/0] 49 FF 90 130 - [iRQ-34] 99 FF 40 80 - [iRQ-14] 116 FF 40 80 - [iRQ-10] 125 FF 40 80 - [iRQ-42] 126 FF 40 80 - [iRQ-41] 236 FF 40 80 - [iRQ-22] 258 FF 40 80 - [iRQ-57] 264 FF 40 80 - [iRQ-33] 305 FF 40 80 - [iRQ-37] 334 FF 40 80 - [iRQ-122] 346 FF 40 80 - [iRQ-17] 351 FF 40 80 - [iRQ-123] 356 FF 40 80 - [iRQ-7] 358 FF 40 80 - [iRQ-102] 359 FF 40 80 - [iRQ-8] 367 FF 40 80 - [iRQ-47] 385 FF 40 80 - [iRQ-11] 395 FF 40 80 - [iRQ-12] 407 FF 40 80 - [iRQ-25] 416 FF 40 80 - [iRQ-45] 1341 TS - 19 0 grep -i irq ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ https://sites.google...ox-touch-tweaks
  6. http://soundcheck-au...toolbox-20.html http://www.diyaudio....ifications.html
  7. videti opsirnije: http://www.ethereali...onstruction.htm
  8. Mikorist

    Tidal Sunray

    [*]Three seperated self-adjusting modules for high-midrange and bass: Two bass modules, One high-midrange module [*]Cabinet-walls up to 5" thick, optimized internal aerodynamic conditions [*]Four 220mm (9") Thiel & Partner (Accuton) woofers, exclusively made for Tidal [*]Two 173mm (7") Thiel & Partner (Accuton) long excuursion midrange-woofers, exclusively made for Tidal [*]One 30mm (1.2") Thiel & Partner (Accuton) tweeter, exclusively made for Tidal http://www.tidal-aud...ish/sunray1.htm
  9. http://www.newlaunch..._cost_26000.php
  10. Mikorist

    Skype is now part of MS...

    mislim da ce asterisk da prevazidje i skype jednog dana http://www.asterisk.org/ jeftino telefoniranje je super - a dzabe je dzabe. sve u tom pravcu se krece - Open Source Communications placace se samo prikljucak za internet ... a ima i pbxinflash http://pbxinaflash.net/
  11. Mikorist

    Skype is now part of MS...

    mogu i ja da uvedem sad ovde opciju video poziv - u lokalu na nasem serveru.i to kroz chat foruma -slicno kao skype.to i nije nije neka velika mudrost vise.pitanje je da li je to bas za svaki sajt - pogotovo prosecni.
  12. http://www.youtube.com/watch?v=lnbjypfmFqI http://www.youtube.com/watch?v=ZgrkU1zP6t4 gledam/slusam ovaj HD
  13. za pocetak onaj rostilj od pre 2 godine
  14. i mi cemo kume to da radimo samo.. sutra (malo)svaka cast sto se frendovi oprganiziraju - za svaku pohvalu
  15. cekam ovaj model da se pojavi
  16. nemoj samo kao Gustav da farbas ovo je legendarni crtac na temu farbanja
  17. kakav bre laptop
  18. svaka pesma je u tri formata u download folderu. (ja sam sve poskidao)44khz - 16bit, 96khz -24bit, 192khz -24bit.master je radjen paralelno 192/96khz a verzija na 44khz je njihov downgrade sa 192verovatno sound-forge pa save as 44khz -16bit
  19. sta bre ima da ga resemplujem slusam ga 24-bitno na 192khz iz foobara 2000
  20. http://www.designwsound.com/dwsblog/wp-login.php?action=register
  21. Audiophile Jazz Prologue – Part 03 free samples in high resolution format. We picked Track 06 – “Lush Life” because it is an unique female vocal solo introduction, then follow with acoustic guitar / double bass arrangement. The master files* are either hires PCM wav files or DSD (DIFF) file. DEC.11-2008: We have added another free sample for our registered user to download. This is Track 04 – “Freddie” instrumental song. The jamming trumpet, piano and sax is first time presents in 24bit96kHz and 24bit192kHz master files. PCM Wordlength: 24Bit Sample Rate: 96kHz (200.5MB) /192kHz (300.7MB) DXD: 384kHz (601.4MB) DSD**: 1Bit/2.82Mhz (184.2MB) http://designwsound....hi-res-samples/ evo pa vidite razliku. sve je snimano ludackom opremom - kablovima -mikrofonima - semplerima - mudima - ultra zvucno - full master 24bit-192kHz. (mora da se uclanite da vidite link za skidanje - sad videh da im je to pravilo ) jedna stvar je i po 400mb u aiff formatu pa recite vase utiske ja sam se smrzo kad sam pustio preko kompa
  22. http://www.youtube.com/watch?v=sAa8as9AwEQ
  23. ko hoce dobar sempl da cuje nek uzme jednostavno AVATAR Blu-ray svaki put me fascinira kako se cuje- ali sve su snimali sa najskupljom opremom koja postoji na svetu - svaki zvuk - svaki treptaj. nije se stedelo. i to se cuje.
×
×
  • Kreiraj novo...