home.social

#dts — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #dts, aggregated by home.social.

  1. all the #wars were #crimes, how about that. this #aggression must not stand, man. Settle down with that or i’ll ignore you.
    that’s how you do it (as a #teacher
    If #donald was in my class, i’d
    try to save him bc it seems like his parents must have humiliated and sexually abused him as a child, and bragged doing it because that’s how you create that type of #monster. #serialkillers. #sadisticassault
    #DTs aren’t just born adults make them by selling kid out, betrayal, neglect #sadistic #selfishn #immature parents who never #love anyone or #respect them. children know how #parents feel. DT’s parents displayed pleasure when perceiving his pain when he was small and #helpless.
    #narcissism. i hate analyzing #dt on a person level, cuz, #fuckhim,
    but in his #familytree is a lot of rotten, evil roots, death, and dead branches— a lot of cruelty, and greed. it’s not sad, cuz #fuckhim,
    but I can always imagine the child inside people. how else could i work with psychotic children.
    #DT does not “just like teen gals.” He likes seeing (smaller the better) children have fear, terror, and shame, sexual humiliation. the more shame and pain the weakling feels, the more in control and “safe" he feels.
    facts just take im out

  2. Happy #DTS Day to all who celebrate! 🎉 See the action LIVE this year at The #USGP ➡️ thecircuit.com/F1

  3. Собираем OpenWRT прошивку и ImageBuilder для нестандартного оборудования на основе dts

    Привет Хабр! Меня зовут Алексей и я занимаюсь беспроводными технологиями. Не так давно я рассказывал, как собрать прошивку OpenWRT без image builder . В этой статье мы повысим планку и попробуем собрать и прошивку, и image builder для модели роутера с частичной поддержкой OpenWRT. Под частичной поддержкой я понимаю то, что для данной конкретной модели роутера поддержки нет, но она есть для платформы. Экспериментировать я буду с реальным устройством - это Wi-Fi 7 роутер, полученный от китайского производителя. Вместе с роутером производитель предоставил нам необходимую документацию и DTS файл. Заранее хочу предупредить, что производитель просил не раскрывать название модели и не тиражировать его DTS файл. Поэтому часть информации на скриншотах я заблюрирую.

    habr.com/ru/articles/969396/

    #wifi_роутер #openwrt #imagebuilder #dts

  4. "by the way, this is all online ... Via mobile phone ... In the pocket"

    #digitaltechsummit #dts

  5. Every now and then there s a line that brings a smile .. if not much more ...

    "in #europe we want to build networks that dont depend on the erratic behaviour of some #billionaire"

    Petar Popovski - Professor - #AAU

    #network #dts #digitalTechSummit #quantumCommunication #QuantumTech

  6. Toto is hilarious
    "What do you do at Mercedes?"
    "I do Marketing" :chefkiss:
    #DTS

  7. Ooof, Christian Horny and his pinky, let's see how much they show #sorrychildren #DTS

  8. Vasseur saying candidly competition comes before any friendship, ayyyy #DTS :chick_knife_devious:

  9. Emphasis on how dirty they did Sainz, can't wait for the revenge arc on season 8 #DTS

  10. In the latest #DTS, When Christian Horner is asked which McLaren driver he'd rather have, he instantly answers "Oscar" with no hesitation. Good call. #Piastri #F1 #Formula1

  11. To all the companies making media streaming boxes, you won't get my money unless you support #DTS audio. The latest lacking device is the Google TV Streamer (4K). Much of my DVD and Blu-ray collection has DTS and I'm not giving that up.

  12. Just projected a gorgeous #35mm print of TOY STORY 2 (John Lasseter, US 1999) with #DTS audio and stunning color/grain. Print source: Academy Film Archive, Los Angeles, CA. Great way to spend a Saturday morning!

    #filmprojection #projectionistpov

  13. Ich bräuchte mal einen Tip bezüglich #StreamingStick. Ich habe #Videos mit #DTS #Tonspur. Brauche ich, um das DTS-Signal beim Abspielen mit #Plex auf meinen #Reciever durchzuschleifen, zwangsweise ein Gerät mit DTS-Zertifizierung oder ist das beim Durchschleifen des #Audio-Signals egal? Bisher habe ich ein #NvidiaShield genutzt, möchte mir aber etwas aktuelles und schnelleres zulegen... Gibt es gute Alternativen zum #NvidiaShieldTV?

  14. Splitting a Surround Sound Audio File in Ubuntu

    shkspr.mobi/blog/2015/07/split

    See this update for a better way to do this.

    Being mostly notes to myself and following on from my post on Quadrophonic files.

    I have:

    I want:

    • The single large file to be split into individual chapters with one file per chapter.
    • Each file to be multitrack (that is, to stay in surround sound)

    It turns out, that there is no simple way to do this. There are tools to split stereo wav files by their cue sheet, but nothing for 5.1 files.

    So, here's how I did it. This process uses mkvtools and avconv.

    The Easy (But Fairly Manual) Way!

    I can't find an automated way to do this from a cuesheet - so here's what you need to do.

    A typical cue looks like

      TRACK 01 AUDIO    TITLE "Alice"    PERFORMER "Bob"    INDEX 01 00:00:00  TRACK 02 AUDIO    TITLE "Carol"    PERFORMER "Bob"    INDEX 01 04:38:14  TRACK 03 AUDIO    TITLE "Dolly"    PERFORMER "Bob"    INDEX 01 08:39:09...

    Track 2 starts at 4 minutes, 38.14 seconds into the file. It finishes at (8m 39.09s - 4m 38.14s) = 4m 0.95s.

    avconv -f dts -i original.wav -ss 00:04:38.014 -t 00:04:0.95 -acodec copy track2.wav

    That is, avconv forced to use DTS, starting at 4.38.014 and finishing after 4m .95s, copying the codec into a new file.

    Calculating Offsets

    It's hard to manually calculate all the timings. One quick(ish) way to get them is by using cueconvert.

    cueconvert -i cue -o toc cue.cue cue.toc

    If you open the newly created .toc file, you should see something like:

    FILE "track1.wav" 0 04:38:14FILE "track2.wav" 04:38:14 04:00:70FILE "track3" 08:39:09 04:38:57...

    You can then use those timings as your -ss and -t values - remember to add the extra leading "00:".

    Limitations

    1. The files aren't tagged / named correctly.
    2. It's a pain to calculate the timings correctly.

    The Hard (But Somewhat Automated) Way!

    Convert the .WAV to .MKV

    avconv -i whatever.wav -acodec copy output.mkv

    In some cases, avconv will think your 5.1 recording is stereo. Fix it by forcing the codec it detects.

    avconv -f dts -i whatever.wav -acodec copy output.mkv

    Create a Chapters File

    MKVmerge require a specific format of chapter file which is different from a normal .cue file. Creating this will be a manual process.

    CHAPTER01=00:00:00.000CHAPTER01NAME=Chapter 01CHAPTER02=00:05:06.03CHAPTER02NAME=Chapter 02CHAPTER03=00:10:12.000...

    Save that as chapters.txt.

    Add The Chapters to the .MKV

    A single command for this one:

    mkvmerge output.mkv --chapters chapters.txt -o withchapters.mkv

    Split The MKV

    There are a couple of ways to do this, I use:

    mkvmerge withchapters.mkv --split chapters:all -o track.mkv

    You'll now have track-001.mkv, track-002.mkv etc.

    Limitations

    At this point, we have two moderately annoying problems.

    1. The files aren't tagged / named correctly.
    2. The DTS audio can't be extracted properly!

    That last one is rather a showstopper! For some reason, the .MKV files play back their audio properly. When trying to extract or convert it, all sorts of stream errors occur.

    TODO

    Either write a patch for avconv to get it to split by .cue - or write a small Python script to do everything automagically!

    Any suggestions for a better way to do this? Stick them in the comments box.

    #audio #avconv #dts #linux #surroundSound