/t/ - Technology

Discussion of Technology

Index Catalog Archive Bottom Refresh
Options
Subject
Message

Max message length: 12000

files

Max file size: 32.00 MB

Total max file size: 50.00 MB

Max files: 5

Supported file types: GIF, JPG, PNG, WebM, OGG, and more

E-mail
Password

(used to delete files and posts)

Misc

Remember to follow the Rules

The backup domains are located at 8chan.se and 8chan.cc. TOR access can be found here, or you can access the TOR portal from the clearnet at Redchannit 3.0.

Uncommon Time Winter Stream

Interboard /christmas/ Event has Begun!
Come celebrate Christmas with us here


8chan.moe is a hobby project with no affiliation whatsoever to the administration of any other "8chan" site, past or present.

You may also be interested in: AI

(2.07 MB 2500x2500 1728929692644166.png)

Hi I need help with something weird Anonymous 10/22/2024 (Tue) 17:35:18 No. 16378
so my grandmother who is really sweet is currently spending 200 a month on cable tv, she cant use internet tv and shes too old to learn how basically i want to broadcast internet tv via analogue signals so she can flick through channels using a computer to bounce the signal to an old tv,how do I do this, and how do i do this as legally as possible? and to hiroyuki for adding a 15 minute countdown for not submitting to the botnet; KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF KILL YOURSELF --- I posted this to halfchan and it was deleted and me banned for "not being tech related", my appeal is that the janny should kill himself, I hope I can get some help here and that janny dies painfully
check out kodi and their IPTV stuff. There's also plugins for some national tv streaming services e.g. retrospect.
>>16394 Will do but I was hoping to avoid modern tech, I really wanted to use some kind of analogue repeater or something so I could make an actual channel (I even have ads from the 60s saved) to make her feel comfy
>>16378 So basically you want her to be able to use her TV like she does now, but with a computer (streamed or media server) as backend? I see 2 options >study up on television signals and hack out some way to "broadcast" multiple channels at once via cable Signal processing libraries might help, but that's still a lot of effort >give her a new programmable remote that interacts with both the TV set and your media center, write some custom interactions so it feels more like TV Still a big project, but more manageable IMO
>>16399 First option is the goal, I just don't understand the legal interference levels and how to achieve it or how to broadcast through the aux cable, I know there is old oddball tech for repeating vcr signals I could probably use but then I'd need to figure out getting the computer signal to the vcr I'd like to be spoonfed, you can call me a faggot for it if you want but grandma is poor and this is fucking up her life, but she wont just quit cable because the alzheimers is kicking in
>>16400 https://youtu.be/CtPHZ5pG6nA https://youtu.be/ot-gYEIWNJs https://youtu.be/CtPHZ5pG6nA https://youtu.be/W7m7OW2xrJE It might cost you a few hundred bucks for one channel and a few thousand for multiple channels. You'll also probably want some way to reset the devices remotely, maybe a smart plug to toggle power or a kvm device or vnc/spice server to remote control, exposing only a vpn server eith a secure password through her router. You'll have to figure out if you want to loop episodes on a channel on a timetable or pass through a cheaper internet tv plan with a script to make sure its reloaded and relogged in case of errors.
Or either, really. Also an RF gain measuring tool or something was recommended if I recall, you'll have to do further reading depending on how much you want to do. Don't know if this book can help or not but it might be a useful reference.
Thinking about it more, some modern cable tv providers might do all the work for you with an ethernet-in coax-out tv box that they'd expect you to plug into router. If you live in a city your cable tv rates are probably lower and you can find a way to vpn that device back to your home network with a middleman router. Don't know since I never bought cable.
>>16402 This is exactly what I need thank you!
alright we have 300 budgeted for it and a plan, I'll post updates here when I'm building it in a few weeks if anyone cares Another question for now though, is there any software I could use to make a tv plan - eg; at 10:00am a random episode of murder she wrote plays for 30 minutes, cutting into ad breaks with random wholesome 70s ads 5 times, then 30 minutes of random episode of gilligans island doing the same thing etc, she doesn't need it but I bet it'd make her smile
>>16459 I can't think of any unless you script it yourself, maybe with some playlist api or command for whatever video player you end up using. Even just peeking at a playlist file in a text editor, making a playlist to load each day but scrambling the episode numbers from a decrementing pool until every episode is accounted for might work. It's out of my wheelhouse but maybe someone else or an AI can help.
Update: I am poorfag, 300 dollars has been hard to put towards this goal, I'm still going to do it and post here don't delete the thread if that's a thing (I am a tourist)
>>16603 It'll be up, activity is slow. Poverty ends up being the bane of every project yeah.
Ordered a rack of modulators and a raspberry pi, as well as a 8 way splitter, I only 50% understand what is going on in the video but from what I can tell he's getting interference because he's receiving over the air channels as well, the only channel that we will be getting over the air, or that we plan to, will be a news channel over the internet, so I don't think I'll have to worry about a weird collection of smaller splitters that he seems to think are necessary I'm going to start with a single channel for now to keep things as simple as possible, I managed to learn from grandma that she likes murder she wrote and golden girls so I'll make a channel for stuff like that I also bought some pretty aspen 2x12s to make a baseboard total cost so far about 250$
>>16681 Noice.
The video comments might help as well, I remember one talking about gain adjustment with a dB meter for the coax or something possibly helping.
(49.20 KB 500x500 xgfxii.jpg)

Blonder tongue MICM rack and power supply has arrived, along with two extra modulators because the seller was a nice person, while I wait for my first pi to arrive I've been asking AI questions to help me figure out where to start with writing LUA scripts to insert wholesome old timey ads to ease her mind, so far it's popped this out at me "function descriptor() return { title = "Custom Playlist Scheduler", version = "1.0", author = "Your Name", capabilities = {} } end function activate() -- Define your playlists local corey_playlist = "path/to/corey_in_the_house.m3u" local ads_playlist = "path/to/ads.m3u" -- Schedule times (in seconds) local schedule_times = { {time = 18 * 3600 + 30 * 60, playlist = corey_playlist}, -- 6:30 PM {time = 19 * 3600 + 0 * 60, playlist = ads_playlist} -- 7:00 PM } while true do local current_time = os.time() % (24 * 3600) -- Get current time in seconds since midnight for _, entry in ipairs(schedule_times) do if current_time >= entry.time then vlc.playlist.add(entry.playlist) vlc.playlist.random() -- Randomize playback order vlc.playlist.play() break end end vlc.misc.mwait(60000) -- Wait for one minute before checking again end end function deactivate() end" It's telling me that this script is basically switching between two different playlists and that it will do this a set amount of times between 6:30pm and 7:00pm in this example, but I have a few questions To add to this list do I just add more playlists for every other half hour slot? for example " local schedule_times = { {time = 18 * 3600 + 30 * 60, playlist = corey_playlist}, -- 6:30 PM
[Expand Post] {time = 19 * 3600 + 0 * 60, playlist = ads_playlist} -- 7:00 PM {time = 19 * 3600 + 0 * 60, playlist = Fawlty_towers} -- 7:30 PM {time = 19 * 3600 + 0 * 60, playlist = top_gear} -- 8:00 PM (I just picked random shows for the record) Also looking at the code, I don't understand code at all but it just looks like it's going to play ads at 7:00pm rather than splitting the initial media up by swapping to the other playlist regularly, and I might need to do something extra for when a video stops playing I'm sorry if this is a retarded thing to ask, I'm a collector of old tech and I love doing things with it but code is something that I just can't seem to understand intuitively, the pi should(!) arrive on monday so I will post some pictures of this then, it kind of makes me weirdly happy it came with the rack so I have the urge to show it off
>>16737 You might have to declare every hour manually yeah, like ads at :53 and :23, and episodes at :00 and :30, if the episodes are 23 minutes long. The top gear playlist should probably say time = 20 for 8:00p/20:00 though? I do wish I knew more to help but I don't have the time.
Also + 30 for the 7:30 programme, I'm assuming -- are comments in lua and don't run code after it. Also commas after each { } except the last in the list, like { {}, {}, {} }
>>16738 >>16739 It's unreasonable to expect you to give me a crash course in not being retarded, thanks for all the help you do give, you've answered the question and I can go from there - I can probably make something with that however pajeeted or yanderedev'd it may be I'll see if I can have ai check my code once I have a basic prototype built


Forms
Delete
Report
Quick Reply