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
3
votes
7 answers

Are any MP3 encoder libraries PIC microcontroller compatible?

I know that are many MP3 encoder libraries, but any of them could work on a PIC microcontroller?
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
3
votes
0 answers

Encrypt/decrypt using myang's Qr encoder Project

Hi this a QR Encoder project found at github by myang, https://github.com/myang-git/QR-Code-Encoder-for-Objective-C i want to use the encode and decode functionality provided here, am able to successsfully create a QR code with encrypted string but…
H Bastan
  • 259
  • 1
  • 2
  • 11
2
votes
1 answer

How To Stream Live Video From iPhone To a Media Server

I can get individual uncompressed frames from the iPhone's camera in iOS4. What i need is a way to package them up with sound for streaming TO a server. I've been searching for a solution on the internet but I did not found much helping info. There…
Gaurav
  • 1,068
  • 9
  • 15
2
votes
1 answer

Windows Media Encoder installation issue

I have a program written in C# and dependent on Windows Media Encoder 9 Series SDK. In order for my program to run on other target machines, I have to install the whole Windows Media Encoder on target machines. My question is, I want to reduce the…
George2
  • 44,761
  • 110
  • 317
  • 455
2
votes
0 answers

Bcompiler 1.0.2 does not work if a class is defined

The bcompiler encoded script of this code works fine:
Tacaza
  • 539
  • 1
  • 4
  • 12
2
votes
1 answer

Detection I Frame in h264 stream (fragmented mp4)

I need to check the first frame in H264 stream is I-Frame. On the input I have fragmented mp4 file. I tried to find type of frame in the moof->traf->trun "Sample depends on" flag. But seems, not every container has this flag filled in. So I want to…
2
votes
0 answers

Universal Sentence Encoder, input must be a vector, got shape: []

I'm doing a stance detection project of brexit tweets using USE. For my code I'm trying to apply this notebook: https://www.kaggle.com/kshitijmohan/sentiment-analysis-universal-sentence-encoder-91 But I get this error: input must be a vector, got…
Radix
  • 254
  • 1
  • 8
2
votes
1 answer

FFMPEG best quality image extraction possible

I would like to extract pictures (png) out of a video for a 3D-modelling task. They should be in the best possible quality. Video is : 1920x1080, 60 fps, 24 bit depth, mp4 .. I have now tried different approaches and feel like I should go…
sci_12
  • 21
  • 4
2
votes
0 answers

how to use ffmpeg to set inband-fec when encoding opus with libopus

I'm learning ffmpeg to encode opus using libopus, I can set inband-fec in libopus like opus_encoder_ctl(aEncoder_, OPUS_SET_INBAND_FEC(1)), but when I use ffmpeg I cannot do that, I tried opt = av_opt_find(m_codec_ctx, "inband_fec", NULL, 0, 0); and…
2
votes
1 answer

Is Apache Commons Codec Base64 a drop-in replacement for sun.misc.BASE64?

Background This is a follow-up question to my original question Migrating from sun.misc.BASE64 to Java 8 java.util.Base64 because someone suggested that the Apache Commons Codec Base64 API is a drop-in replacement to migrate code which uses the…
Ivo Mori
  • 2,177
  • 5
  • 24
  • 35
2
votes
1 answer

StackOverflowError on encoding to JSON with circe

I am writing tests for my case classes and in the following test I have a StackOverflowError: test("ValuationRequest - Conversion between case object and Json works") { val caseObject = ValuationRequest(TIME_SERIES_INTRADAY, "",…
LeYAUable
  • 1,613
  • 2
  • 15
  • 30
2
votes
3 answers

how to assign the address pointed by a pointer to another local pointer

I'm doing a video processing project, and I got struck in assigning the block address for sending to the dct function. The following line is not taking the correct assignment address as the right hand variable pointing to. temp = (unsigned short…
Arun
  • 53
  • 1
2
votes
1 answer

Using Tensorflows Universal Sentence Encoder in Node.js?

I'm using tensorflow js in node and trying to encode my inputs. const tf = require('@tensorflow/tfjs-node'); const argparse = require('argparse'); const use = require('@tensorflow-models/universal-sentence-encoder'); These are imports, the…
Stephan
  • 155
  • 13
2
votes
0 answers

Base quicksync parameters for realtime streaming

I've wrote quicksync encoder hardware implementation for realtime streaming. Everything works fine, however now I got stuck on encoder parametrization. Docs from Intel are very poor and non-specific. I've read: SDK API Reference Manual Intel Media…
PStarczewski
  • 479
  • 2
  • 17
2
votes
1 answer

how to build a custom bidirectional encoder for seq2seq with tf2?

class Encoder(tf.keras.Model): def __init__(self, vocab_size, embedding_dim, enc_units, batch_sz): super(Encoder, self).__init__() self.batch_sz = batch_sz self.enc_units = enc_units self.embedding =…