Encoder is a software program, device or algorithm that converts information from one format or code to another, for the purposes of standardization, speed, secrecy, security or compressions.
Questions tagged [encoder]
612 questions
-2
votes
1 answer
How to I turn a user's input into individual variables?
What I want to do is make a test encoder but I can't manage to turn the user's input into individual variables that have the user's individual text letters in them. How do I do it? I have tried many different answers on this site but none of them…

James Gordon II
- 19
- 6
-2
votes
1 answer
How to encode with actual bits in Python?
I have built a huffman encoder in Python, but because I'm storing the bits (which represent the characters) as strings, the encoded text is larger than the original. How can I use actual bits to compress text properly?
-2
votes
1 answer
ATmega2560 External Interrrupts rotary encoder Bouncing
I am trying to get readings from 3 rotary encoders (KY-040) and send values via UART.
I am using Arduino-Mega 2560 board but due to requirements reason I am programming it in C.
But when I try to get the reading from encoder I get random…

sha09
- 3
- 3
-2
votes
1 answer
Obtaining encoder data
Hello and in advance thank you for reading my post,
I am working on a project which is controlled by a stepper motor which also includes an encoder. I have made the motor running and now I want to proceed to the next step and include the functions…

J.Doe
- 13
- 2
-2
votes
1 answer
Why does my iOS app crash while saving model object to managedObjectContext
I am getting a this crash while adding Model Object in database, i have symbolicated the crash,
here is the stack trace for crash
SIGSEGV
SEGV_MAPERR
libobjc.A.dylib 0x366746ba objc_retain + 8
1
Foundation 0x2907887d _encodeObject +…
-2
votes
1 answer
how to write our own program in JM reference software
I want to model a background for some 20 frames and treat that as the reference frame.Iam having the mathematical model and I want to know the file where this modification has to to be done.Could I do the modification in C:\JM\lencod\src

Jeba Berlin
- 39
- 1
- 5
-3
votes
1 answer
simple MFC/C++ MIME Encoder?
I need a simple C++ compatible with MFC or ATL, MIME Encoder, I need it for sending MIME encoded text posts to a web server.
Where can I find a source code for this ?

Mario
- 13,941
- 20
- 54
- 110
-3
votes
1 answer
Get a shorter encoded characters of an encrypted link using Java
I need to get a shorter characters using my encrypted link. This is is the encoded characters Im currently getting using my code: data=xvXTyQe6cthuC0GdQcOvCR5PKSlFiMqLBt7tM0zbxHs%3D. I want to achieve shorter characters than this.
What I have…

Sham
- 1
-3
votes
1 answer
Predicting numerical features based on string features using sk-learn
I am trying to predict the 'Full_Time_Home_Goals' column (feature).
I have followed the Kaggle example. The code works with the varied dimensions as in my example (419 rows in test data and 892 rows in train data)
import numpy as np
import pandas as…

PyNoob
- 3
- 5
-3
votes
9 answers
Morse Code Converter in C
Yes its homework
We were suppose to have char 2D array holding character with size limit of 255 char char string[100][255];
Program neede: change the input morse code by a user to alphabet/English letter (Capital Letters)
Sample Input
2
.... .…

HerlDerp
- 47
- 1
- 1
- 11
-4
votes
1 answer
JSON encode of array of own struct
I try to read a directory and make a JSON string out of the file entries. But the json.encoder.Encode() function returns only empty objects. For test I have two files in a tmp dir:
test1.js test2.js
The go program is this:
package main
import…

Michael
- 6,823
- 11
- 54
- 84
-5
votes
1 answer
why does ffmpeg export black video?
i give ffmpeg a simple task which is the following
ffmpeg -i test.avi -c:v rawvideo -pix_fmt yuv420p out.yuv
i try to play the video but it gives a black screen, even in a .yuv player.
ffmpeg supposedly "running"
is there some human error that i am…