Quantcast
Channel: Ricks Satellite Wildfeed and Backhaul Forum - Computer and USB Satellite Receivers and Recording
Viewing all 816 articles
Browse latest View live

Bitstream

$
0
0
I would like to send the bitstream from a feed to my receiver rather than PCM.  I am using DVBViewer and the TBS 6903 receiver. I can't seem to find that option in the setup of the tbs card. Can anyone point me in the right direction?   THANX<

Dave

Category: Computer and USB Satellite Receivers and Recording


TBS5520SE Question

Dvb-s2 on Windows Media Center

$
0
0
I have been seeing several euro blogs where they are discussing how to force WMC into working on HD transponders

One mentions using a hacked DLL " MSDTVVDEC.DLL "

Several others mention " MCEDVBS2PatchTool.exe " from Hauppauge



I also have heard of windows registry hacks

Does anyone know anything about any of this ?

Category: Computer and USB Satellite Receivers and Recording

Streaming TSReader with VLC

$
0
0
My desktop PC has a TBS6983 satellite tuner card installed.
I'm using TSReader to control and tune the card.
TSReader uses VLC to play a selected channel over HTTP via the loopback adapter address (127.0.0.1:1234).
I was trying to figure out how to stream the satellite channel to VLC running on other computers on the LAN - specifically my laptop in this example.
My ultimate goal is to make the stream DLNA compatible (using serviio maybe?) and send it directly to the TV, but I'm not there yet.

These are very basic functions, but it took a lot more time and effort than I expected to get it to work because I wasn't fluent in VLC command line and much of the documentation online is either outdated, incomplete, or confusing. So this might be very basic to some of you, but it might save other people some time. I did search this forum (and the web) for specific instructions first, but didn't find anything recent or exactly what I was looking for.

TSReader has a very neat feature on the Playback/VLC menu, that you can define up to 16 configurations (different sets of command line parameters) to pass to VLC; just click on "Settings" at the bottom of the menu. The first configuration, "Play", is already defined, like this:

Description: Play
Command: <IP>

It simply passes the loopback address and port 1234 to VLC (127.0.0.1:1234), which conveniently is the address that TSReader is streaming to, and VLC launches and plays it. The "<IP>" at the start of each command must be there, and it's literally just the letters IP - don't substitute an actual IP address. I believe it gets parsed as the loopback address.

Here are the Configurations that I added. Note that 192.168.1.27 is my desktop's IP address (host) and 192.168.1.22 is my laptop's IP address (client). You of course have to change those to your corresponding addresses.

I set up the 2nd configuration to stream using HTTP like this:

Description: HTTP Stream
Command: <IP> --qt-start-minimized --sout "#standard{access=http,mux=ts,url=192.168.1.27:8080}"

Note that VLC will start minimized in the system tray, and it will not play the stream locally on the desktop/host - it will be blank (which is why I have it start minimized to the system tray). This is to cut down on the CPU load on the desktop PC for high bit rate channels or feeds. (Note that there is a quirk whereby TSReader doesn't seem to properly shut down VLC if it's running minimized to the system tray.)
If you don't want that, simply leave out the first part:

Command: <IP> --sout "#standard{access=http,mux=ts,url=192.168.1.27:8080}"

However, again VLC on the desktop will be streaming only, and not also playing the channel, which is why my 3rd configuration is:

Description: Play and HTTP Stream
Command: <IP> --sout "#duplicate{dst=display,dst=standard{access=http,mux=ts,url=192.168.1.27:8080}}"

this launches and plays the channel on the desktop and also streams it over HTTP, using just one instance of VLC running on the desktop.

To play the stream on my laptop, I open VLC and from the Media menu choose "Open Network Stream" and enter the IP address and port of the desktop (host) VLC server like this:

http://192.168.1.27:8080

(You can change the 8080 to any available HTTP port on the desktop/host.)

OK, those both work great, but HTTP isn't ideal for our purposes because it uses TCP and thus has "guaranteed packet delivery", which is great when you are transferring a file, but for streaming video you're better off if it just drops packets if it encounters network congestion or other connectivity issues. A much better choice is the RTP protocol, which uses UDP, isn't afraid to drop a few packets, and has lower overhead. (Both RTP and HTTP support the "transport stream" output of TSReader without needing to transcode anything.)

Here are the RTP configurations:

Description: RTP Stream

Command: <IP> --qt-start-minimized --sout=#rtp{mux=ts,dst=192.168.1.22}


Description: Play and RTP Stream

Command: <IP> --sout "#duplicate{dst=display,dst=rtp{mux=ts,dst=192.168.1.22}}"


To play the stream on my laptop, I open VLC and from the Media menu choose "Open Network Stream" and enter the IP address and port of the desktop (host) VLC server like this:

rtp://192.168.1.27@192.168.1.22

(The default port 5004 is being used and thus isn't specified in those examples. You can change it to any available rtp port on the desktop/host, but it has to be even.)

Note that simply entering rtp://192.168.1.27 (the desktop IP address) does *not* work.
Also, I used "unicast", the simplest case of RTP streaming, so the laptop's IP has to be specified in the configurations (as the destination, "dst=") and only the laptop can play that stream. You can use the "duplicate" command to send the stream using unicast to more than one location, e.g.:

<IP> --sout "#duplicate{dst=rtp{mux=ts,dst=192.168.1.22},dst=rtp{mux=ts,dst=192.168.1.xx}}"

and RTP has a "multicast" command, but I haven't figured that out yet.

Anyway, that's a start and I hope it helps. There's so much more that can be done using the VLC Configurations - transcoding, multicasting, record to a file (manual DVR), etc.

Category: Computer and USB Satellite Receivers and Recording

TBS drivers will no longer build under Ubuntu 16.04, could someone please explain why?

$
0
0
In the last week or so several people have reported that it's no longer possible to successfully build the TBS card drivers under Ubuntu 16.04, specifically since the kernel was updated to 4.4.0-143-generic.  There is a thread that explains the situation at https://www.tbsdtv.com/forum/viewtopic.php?f=87&t=25121&sid=bab993ea8ab8c4fec26b374bf3f6a101 but it is rather unhelpful because it implies that the TBS driver code needs to be changed, but so far TBS hasn't done it.  The same issue was posted at https://askubuntu.com/questions/1126256/why-do-tuner-card-drivers-fail-to-build-after-kernel-update-to-4-4-0-143-generic and then I guess someone else posted it to https://bugs.launchpad.net/ubuntu/+source/linux-signed/+bug/1820454 and from the last comment there I get the impression that Ubuntu (or the Linux kernel writers) made this change deliberately, even though they knew it would cause breakage.

What I don't understand from this discussion is whether there is any way to fix this issue if TBS doesn't fix their drivers.  I am not all that conversant in Linux, and I'm definitely not a programmer, so that entire discussion didn't make much sense to me, at least not in terms of implementing a fix.  It almost looks like it might be a really small change in the source code but without knowing what that change is, or which file needs to be changed, those having this issue are left high and dry.

One guy said he was able to use the open source drivers, but I have tried those previously and for some reason when using those I can't receive all the channels that I can when using the TBS drivers.  I'm running Tvheadend and if I recall correctly, for some reason with the open source drivers it wasn't possible to scan some of the muxes successfully, though with the TBS drivers the same muxes scanned in fine. It's been quite some time since I tried the open source drivers and honestly my memory isn't that good, especially at my age, so I can't really be more specific about what the problem was with those.  But anyway, I know there are guys in this forum that know something about programming and driver code, so I was hopeful that perhaps you could explain (in a dumbed-down way that I can understand) what the problem is here.  What would be REALLY great is if it turns out that this is a simple fix and you know what it is, you'd kindly post what has to be changed, but I realize you'd need to be familiar with the TBS Linux drivers to do that.  But if you could, I'd be very appreciative, and I know that the others having this issue would also.

Alternately if any of you have inside contacts at TBS and could find out if they are planning to update their drivers, I would appreciate that also.  Right now I need to hold down the shift key and boot into the old 4.4.0-142-generic kernel in order to get the tuners to work, but as was pointed out in that thread, when you do that you don't get any kernel security updates, and that just kind of seems like kicking the can down the road.  It's kind of frustrating that TBS has been unresponsive so far, although I realize it's only been a week so it's possible they are working on it.  I just wish there was some way to know for sure, and it's not encouraging that their previous most recent driver update is dated 170330, almost two years ago.  So if anyone can help with this in any way, I (and I am sure the others experiencing this issue) would really appreciate it!

Category: Computer and USB Satellite Receivers and Recording

4K on a PC

$
0
0
I just upgraded my video card in my HTPC with a Geforce GTX 1050 Ti.  I ran some tests and the card is 3X faster than my old GTX 460.

I'm trying to play some 4K on it, but am not having a lot of luck.  

So I've used both Media Player Classic and Elecard and both had mixed results.

The signal I'm using is the NASA 4K channel.  MPC probably doesn't have a codec, so it won't play the stream.  Elecard will play the stream, but it is nowhere near smooth.  Basically the same as my old GTX 460 card.  

I'm bouncing all over on CPU usage, so I don't know if the player is using the card for acceleration or the CPU.  The CPU may be a little older, but is a quad core running at 2.4 ghz.  The box has 8GB of RAM. There is a setting for hardware acceleration that is checked.

Anyone who is playing 4K off a PC cleanly, I'm up for any suggestions.

Thanks.

Category: Computer and USB Satellite Receivers and Recording

Prof 7301 install problem

$
0
0
I'm re-installing this card in a different OS...Win7 64bit after it being out of commission for a while.  I see new drivers on a website, but really worry about viruses, even though it might be legit.  Just don't need more problems.

Anyway, on my computer I found a Win7 64 bit zipped file for the Prof7301 that has only 3 files, a .inf, .cat and .sys. 

When I try to install, Windows finds the .inf and installs the TS capture in Device Manager.  However, if I can remember, there were two parts to this install when an installer was used.  One of those was the BDA driver and the other was TS capture.  I don't see a driver installed.   I even tried dumping these in System32/Drivers to no avail.  I'm sure there is some registration somewhere on these. 

I may have an installer CD, but it's probably so old Win7 is not on there.  Any help on this would be appreciated.

PS..the site for a newer driver file package is DVBsupport.net.  But like all the others it's got several download buttons which always makes me a little nervous

Thanks

Edit:  I downloaded the files from the above site and they seem legit.  Just the same  files.  Have they never heard of a Read Me file?

Category: Computer and USB Satellite Receivers and Recording

Tbs6903 with smartdvb for blindscan - crazyscan bda driver not working


AltDVB 2.2/Windows 10

Prof 7301` Under Linux?

$
0
0
HAs anyone successfully gotten this card to work under Ubuntu?
The only machine I have available at the moment is running Ubuntu. I'm using 18.04 LTS 64 Bit.

Would greatly appreciate some how to's as to finding and installing drivers.


Thanks in advance!

WT

Category: Computer and USB Satellite Receivers and Recording

Computer vs set top box receiver

using RTL-SDR for DVB-S2??

prof 7500 crazycat driver error code 52

$
0
0

Hi guys 

this is my first post on this forum

before I tried to install crazycat driver for prof 7500 on windows 10 pro 64 bit, I disabled secure boot on bios also disabled driver singing code & disabled driver signature enforcement. then boot into test mode import & install the certificate then install the driver. everything went smooth & I got no error what so ever after I installed the driver on test mode when I restarted & got back to normal windows mode I checked the device manager got this error. Windows cannot verify the digital signature for the drivers required for this device. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source. (Code 52)

how can I fix this issue?  why this error occurred? how can I prevent it?

I attached some screenshots of device manager on test mode & normal windows mode

any help will be appreciated

regards


Category: Computer and USB Satellite Receivers and Recording

skystar usb hd issue device cant start error code 10

$
0
0
Hi guys
when I tried to install drive for skystar usb hd after I plugged in the usb cable of the card on windows 10 pro 64 bit I got error code 10 device cant start on device manager. I couldnt even install technisat software after I got this error. I tried to remove the driver and reinstall the driver, got the same error. even try to test the card driver on two other pc's with windows 7 & 10 got the same error.
how can I fix this issue? is this a hardware issue?
I also attached some screenshots of driver error code, driver version on device manager 
any help will be appreciated
regards
 

Category: Computer and USB Satellite Receivers and Recording

4T2 Content Analyser - udp doesn´t work

$
0
0
Hi,
I use 4T2 Content Analyser but analysis of UDP/RTP have never worked on my PC. I tried different 4T2 versions but no luck. On the same PC with the same IP configuration I can successfully analyse the same UDP source with TSReader or Dektec StreamXpert. I am able to use 4T2 analyser for playing TS-files but I need to analyse UDP/RTP input. 
4t2.png 
Is there anything I do wrong? Thank you

Category: Computer and USB Satellite Receivers and Recording


Weird problem with transedit

$
0
0
I am having problems getting this program to scan in, either via blscan or just entering the satellite data directly into transedit using both prof cards.

The TBS card scans all channels manually input into transedit fine.  No problems with this card whatsoever.

I have three cards.. Prof 7301, 7500 and of course the TBS 6xxx.

All three cards will scan fine using blscan.exe at the command window.  However when either prof card's scanned file is opened via transedit no channels are scanned in.

The 7500 has a signal/lock light and when I manually enter satellite data and hit scan, the green light comes on momentarily, as if the signal is seen and data is being sent between transedit and the receiver, however all PMT, etc lights in Transedit are yellow are red.  This happens also if I scan in a file.

Didn't know if anyone has seen this before...Thanks!


Edit:  the 7500, now works fine.  The 7301 which was my initial problem card still does not work in transedit, but it scans in fine with blscan.exe.

Edit2: Deleted and reinstalled 7301 driver.  Problem solved.  Never seen a driver work partly.

Category: Computer and USB Satellite Receivers and Recording

Prof 7301 Driver Installation Problem

$
0
0
I had to replace a hard drive on the computer that runs my 7301 and upon trying to install the drivers I have an odd problem. The capture part comes up fine and shows the installed driver but the dvbs/s2 section shows a yellow exclamation point and when I attempt to install a driver it tells me the best driver i already installed. It gives a code 39 possibly corrupted. I have removed and reinstalled the 7301 after powering up and logging on with the card removed. I have tried to remove the driver in question but Windows refuses to allow me to do so.

Has any of you ran into a silly problem like this??  Any suggestions much appreciated!

Wayne

Category: Computer and USB Satellite Receivers and Recording

TBS 6922

Getting Smart DVB to work for ATSC in North America

Artifacts in 4:2:2 video in DVB Dream

$
0
0
Everyone,
I bought a TBS usb tuner from Rick about 2 1/2 or 3 years ago, but just got around to setting it up.

I bought a used computer at a yard sale. A Dell with a i3, 3.3 Ghz CPU and 8 GB of ram. I have the registered full version of DVB Dream. I have smart TV and the computer is hooked up to one of the three HDMI inputs. 

I can get the 4:2:2 feeds of CBS on 89W (SN2A, SN2B, etc.) the picture is good and clear until the movement is fast, then there are artifacts in the picture, just around the edges of the person or thing moving fast.

Has anyone had this issue? Do I need to add a video card to get rid of this? Should I upgrade to a gaming computer? Any help would be greatly appreciated.

Category: Computer and USB Satellite Receivers and Recording

Viewing all 816 articles
Browse latest View live