Questions tagged [encoder]

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.

612 questions
0
votes
1 answer

Splitting Text and Ints and Putting Them Into a Array?

I am trying to make somewhat of a encoder thing. You enter a code with 1 letter ranging from A to C and four numbers ranging from 1 to 9 (EX: A3256). Here's where it gets tricky. I need to split this up into an Array or whatever is best (EX: [1]A…
user2406223
  • 39
  • 2
  • 7
0
votes
0 answers

Can't do constant encoding using MediaCodec on Android Tablet

I am trying to use MediaCodec for hardware encoder on Samsung Tablet GT-P5100. But I only can get a few frames. The preview can get the constant video information and show it but there is something wrong with the encoder function after several…
Brendon Tsai
  • 1,267
  • 1
  • 17
  • 31
0
votes
2 answers

How to use the "Shine-MP3-Encoder-on-AS3-Alchemy"?

I was trying to convert wav to mp3 in my actionscript project, and I was glad to find the https://github.com/phillockwood/Shine-MP3-Encoder-on-AS3-Alchemy but my actionscript knowledge is so limited that I don't know how to use it in my project. In…
bruce Tse
  • 1
  • 2
0
votes
1 answer

.NET Expression SDK LiveJob Authentication

I'm trying to stream a live feed to a Publishing Point but keep getting 'Access is Denied' errors. I can do this just fine in the Expression Encoder application (using a valid username and password). But when I try to use the same…
Colin O'Dell
  • 8,386
  • 8
  • 38
  • 75
0
votes
0 answers

Converting 0-5v analog to a rotary encoder equivalent

I'm currently working on a robot as an intern and must choose replacement drivers for the motors. The position information of the axis are given by analog pot. I do have 3 drivers by technosoft that needs a rotary encoder (quadrature) information to…
0
votes
1 answer

Make Calendar Which Shows Month Number and Days of Month in VHDL?

Question: Make Calendar Which Shows Month Number and Days of Month ? Write Both in Combinational and Sequential VHDL Constructs ? I am new on this VHDL and i have a quiz on Monday .. Anyone have any idea about where to start and how to start writing…
0
votes
1 answer

Screencasting of a Silverlight Application?

I have got a silverlight application which basically plays videos among other things, as is portrayed below (Silverlight 3): But, when I…
0
votes
1 answer

fatal exception : thread 8, java.nullpointerexception

when I try running the application I found the error message in logcat, NullPointerException. Where the code which make this error is show below. The str is get from another class which is call MD5encoder. The code show below as well. the string md…
0
votes
1 answer

c# Two Programs accessing a single-threaded encoder

I have written a program to enable quick configuration of an encoder as well as data acquisition to a text file. I need to be able to access the encoder through industrial software at the same time, reading the text file is not possible. I have no…
jester
  • 238
  • 5
  • 13
0
votes
3 answers

Javascript text Array Data Scrambling and Descrambling

I am looking for super fast and compact Javascript code or function to scramble and descramble text stored in Arrays. I only want this text not readable when the user go into "View Source" mode with the browser. There are many options like add fixed…
0
votes
1 answer

Problems in avro schema .. String, null

In this avro schema {"type": "record", "name": "Member", "fields": [ {"name": "name", "type": ["string", "null"] }, {"name": "skill", "type": "string"} ]} When I try to assign multiple values to name like multiple records ...…
ramu
  • 1,325
  • 2
  • 17
  • 25
0
votes
2 answers

expression encoder screencapturejob capture rectangle out of range exception

My screencapturejob.rectangle results in a exception(ArgumentOutOfRange). Here's my code: private void RecButton_Checked(object sender, RoutedEventArgs e) { System.Drawing.Size monitorSize = SystemInformation.PrimaryMonitorSize; …
0
votes
1 answer

encoded JPEG and JPEG differene

I have a JPEG file in a char* buffer from a jpeg encoder. Assume if I write it correctly to file it'll be pic.jpg. Say then I read in using ifstream from pic.jpg and store it in char* buffer2. What's the difference between these two buffers, if…
0
votes
1 answer

Raw rgb frames to mpeg?

Does anybody know of a simple dll that has like 3 main functions, i.e. 1. Start_recording_mpeg(, , , ) 2. Encode_frame() 3. Finish()
Chris
  • 6,642
  • 7
  • 42
  • 55
0
votes
2 answers

In Java & MYSQL, Is it a good practice to encode text when we insert text into DB?

Lets take a look at this scenario: you have a textbox that allows the user to copy any kind of text (UTF8 or Chinese or Arabic characters), then a Submit button to insert that text into MySQL DB. Normally, I use URLEncoder.encode(text,"UTF-8") & my…
Tum
  • 3,614
  • 5
  • 38
  • 63