Interests: programming, video games, anime, music composition

I used to be on kbin as e0qdk@kbin.social before it broke down.

  • 6 Posts
  • 29 Comments
Joined 10 months ago
cake
Cake day: November 27th, 2023

help-circle



  • I was getting it a few days ago, but I'm pretty sure you weren't on 0.19.4-rc.11 yet the last time I saw it. Testing for a few minutes just now I haven't managed to reproduce it. Will let you know if I see the issue again. (Hopefully it's just good now!) Thanks!

    I did find a small issue while checking though -- on mlmym's settings page, the logo in the top left is showing up with src %3cnil%3e instead of a valid path.



  • I don't know how to do it with KDE's tools, but on the command line with ffmpeg you can do something like this:

    ffmpeg -i video_track.mp4 -i audio_jp.m4a -i audio_en.m4a -map 0:v -map 1:a -map 2:a -metadata:s:a:0 language=jpn -metadata:s:a:1 language=eng -c:v copy -c:a copy output.mp4
    

    Breaking it down, it:

    • runs ffmpeg
    • with three inputs (-i flag) -- a video file, and two audio files.
    • The streams are explicitly mapped into the result, counting the inputs from 0 -- i.e. -map 0:v maps input 0 (the first file) as video (v) to the output file and -map 1:a maps the next input as audio (a), etc.
    • It sets the metadata for the audio tracks -metadata:s:a:0 language=jpn sets the first audio track (again counting from 0...) to Japanese; the second metadata option sets the next audio track to English.
    • -c:v copy specifies that the video codec should be copied directly (i.e. don't re-encode -- remove this if you DO need to re-encode)
    • -c:a copy specifies that the audio codec should be copied directly (i.e. don't re-encode -- remove this if you DO need to re-encode)
    • output.mp4 -- finally, list the name of the file you want the result written into.

    See documentation here: https://ffmpeg.org/ffmpeg.html

    If you need another language in the future, I think the language abbreviations are the three letter codes from here: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes -- but I'm not certain on that.












  • I quit YouTube along with reddit last summer. I don't use alternate interfaces. I haven't found a replacement for most of the niche content I liked to watch there -- and yes, that sucks.

    I've mostly been watching offline content (like DVDs and things I downloaded years ago) when I want video entertainment, and doing other stuff with my free time.

    You might think that'd mean more time playing games given my interests, but I've found I'm a lot less enthusiastic about playing through games if I can't watch an LP or two of it afterwards. So, I'm actually playing (and also buying) less of those than I used to too.


  • Glad to know it's not just me. I think there might be more going on than just a caching issue though since when I look at the URLs requested in my browser's dev tools it seems like it's actually requesting the wrong data from the API. It looks like it's always requesting https://reddthat.com/api/v3/post/list?limit=20&sort=New&type_=Subscribed twice per click for me -- with the requests raced -- regardless of whether I click on Local or All or try to change the sort order. (Subscribed + New sort order is my default view; you might get something different if you have a different default view or are testing it logged out.)




  • The problem still shows up on my profile (including if I view it logged out) and the order is persistent until I comment -- but still jumbled afterwards. e.g. right before posting this "Penguins in the Bathroom [Penguindrum]" is at the bottom of the first page despite being a post I made 4 months ago, and right above it is "It's just one of those days... [Nichijou]" from just under two months ago with a screenshot from Nichijou as a comment just above that -- but my comments on things like the Kendama Core post and the April Fool's Day Shrek thread are on the second page despite being much more recent.

    Looking at your profile right now as well, I see a comment on "Frequent short downtimes lately?" from 8 months ago at the bottom of the first page while your comment about Meta's Threads from 2 weeks ago is at the top the second page.

    Looking at it logged out, it seems like it's trying to sort user profiles by Hot by default. I didn't notice that before since I have default sort set to New -- which it definitely is not doing for profiles even though it adds it to the URL. (I'm not sure if it's actually the Hot sort though -- it might be ignoring that too...)

    (Submitted an issue on mlmym for you)

    Thanks. My ability to interact with Github is limited since I absolutely refuse to give Microsoft my phone number.