Questions tagged [transmission]

For questions relating to data transmission.

Data transmission is an increasingly important part of software design, particularly with regard to the secure transmission of private information and the variety of ways that data can be trasmitted.

Transmission can also refer to Transmission, the BitTorrent client.

228 questions
0
votes
1 answer

How can I encrypt data in a LAN or Interanet while transmitting?

I want to encrypt the data in a LAN or internet while transmitting. Is it possible? If yes, how? Can I use IPsec for this, or is there any other protocol to do this?
0
votes
1 answer

Sonarr/Radarr Remote path mapping to docker transmission

I'm trying to setup a Sonarr/Radarr server for my plex and I therefor need a torrenter. Currently I use Transmission but I'm not able to get the data from it. Everything works fine until the point where the system shall get the file. I'm getting…
Fredrik
  • 477
  • 4
  • 22
0
votes
1 answer

What type of data compression involves truncating the first few bits of a piece of data?

We learned about data compression in my class last week and I'm confused about a certain strategy. My teacher showed us an example where he truncated 8-bit characters by cutting off the first 5 bits, which were all zeros. A is 0000 0100 which is…
Marcus Kim
  • 283
  • 2
  • 12
0
votes
1 answer

Unicast image transmission using Xbee

community I've been working on image transmission using xbee s2b pro modules and Arduino Mega. Main task is to transmit an jpg image taken by a jpeg serial camera at the transmitter and send it to a microSD memory at the receiver, but I've been…
M. Ríos
  • 1
  • 2
0
votes
1 answer

quota with transmission daemon?

I just installed a seedbox with Transmission daemon on a Debian 9 server. My Local disk space is 457.69 GB total / 428.30 GB free / 29.39 GB used When I connect to my seedbox in RPC with Transmission Remote GUI, the free space is 12.08 GB. My…
0
votes
0 answers

Change the transmission range for the ns2 node

I am new in the ns2 and I want to change the transmission range for the node. My space work 1000,1000. So, I hope if there is someone can help me by code or the way to change the node transmission range.
Qusay
  • 15
  • 1
  • 7
0
votes
1 answer

iBeacon detected in Locate app but not in Beacon Tools

I am trying to transmit the major minor id from device making it an iBeacon using library compile 'org.altbeacon:android-beacon-library:2.9.2@aar' the code if (mBeaconTransmitter != null) { mBeaconTransmitter.stopAdvertising(); …
Pratik Vyas
  • 644
  • 7
  • 20
0
votes
0 answers

Transmit string Array over audio cable using java PCM

My objective is very simple, I want to transmit string data from PC1 to PC2 through an audio cable using the PCM methodology. However, I'm encountering some problems when I record the data from PC2. In fact I was expecting ASCII numeric values,…
Ale
  • 21
  • 1
  • 2
0
votes
1 answer

Streaming Android tablet display to notebook

I'm recording (external and internal) sensor data on my Android tablet. Now I would like to stream these recorded sensor data over internet to my notebook / PC and display a graph of the data there. I have found this nice tutorial:…
machinery
  • 5,972
  • 12
  • 67
  • 118
0
votes
2 answers

node-transmission package not working

I tried installing this package : https://github.com/FLYBYME/node-transmission in my local nodejs installation but I am getting following error while running example.js from the above github repository. Error: connect ECONNREFUSED…
MR-4O4
  • 311
  • 1
  • 2
  • 11
0
votes
2 answers

Apache reverse proxy issues

I have an apache server and transmission-daemon running together. Only ports 80 and 443 are open, I want to be able to access transmission's web interface from "https://address.net/transmission" instead of "localhost:9091" I followed several guides…
marvin
  • 33
  • 3
  • 6
0
votes
1 answer

TCP Server & Client not receiving each other's information

I'm very new to all that TCP thing and I just can't find what's going wrong here. It might be pretty obvious for some of you. When I run the code, I run the Start process on the Server side, it displays 'waiting for connection', then I start the…
vbuzze
  • 930
  • 1
  • 11
  • 25
0
votes
1 answer

C# - double-Value transmitted to Java client via byte[]

I am transmitting a double value from a C#-mqtt client to a Java-mqtt client. Mqtt requires its payload to be a byte[] so I in c# I am doing the following: byte[] vals = BitConverter.GetBytes(sub.value); // c#-sender and transmitting this over mqtt…
Aeefire
  • 888
  • 10
  • 25
0
votes
1 answer

Measuring data transmissions from your iPhone app

Just curious if anyone knows how I can measure the data transmission from my iPhone app. A client wants to know what to expect in terms of cost, so we should be able to measure the payload per form and multiply it by the number of expected form…
u84six
  • 4,604
  • 6
  • 38
  • 65
0
votes
3 answers

Transmission variable of URL to the method in Laravel

) I have method: public function show($id){ $categories = Category::findOrFail($id); $productsList = Category::with(['products' => function ($query) { $query->where(['category_id', 19]); }])->get(); return…
major697
  • 139
  • 1
  • 2
  • 15