Questions tagged [raw]

204 questions
0
votes
1 answer

Azure speech to text in real time from .raw file

I am trying to create a Speech to text script that, using a .raw file in which audio data is getting added to from a web socket server, transcribes .raw audio data in real time and converts it to text for further processing. I am very new to…
Yuuki
  • 1
0
votes
0 answers

How adding css style @Html.Raw content

I want the html coming in @Html.Raw content to appear in a fixed area. So I need to add width and height. How can I add it?
0
votes
0 answers

c source code for establishing connection using cotp with raw socket

I'm trying to make a application based on the x400 protocol but I'm having trouble establishing the connection with the cotp protocol. I am programming on linux and I am using the raw sockets to establish the connection. I was able to find tutorials…
Christ
  • 1
  • 1
0
votes
0 answers

Creating custom packets on Windows systems

I've been researching the creation of custom packets, and from what I've seen it is easy enough on Linux, only requiring sudo and the combination of SOCK_RAW and IPPROTO_RAW in the call to socket(). On Windows, on the other hand, very surprisingly,…
coolguy123
  • 67
  • 6
0
votes
0 answers

Why PHP script fails to capture icmp packets by raw socket?

My PHP script uses raw socket to capture icmp packets, but actually it falis. the script is as follows:
0
votes
1 answer

Image to indexed binary

I need to convert an image to binary. The result should be a 256 indexed binary file with the color format RGB565 16bit(1 color 2 bytes) This format is used to store image background for watchfaces on cheap…
fbiego
  • 328
  • 3
  • 12
0
votes
0 answers

using Gstreamer i am loopback the dmic to speaker the sound is good but when i recorded that mic and play that time sound is not good

i am using gst-launch 1.0 i wanted to record raw file using the gstreamer and also wanted to play raw file using gstreamer. put the command using which i am testing the dmic. if i recorded file in 1x speed but when i play it plays in 0.25x…
0
votes
0 answers

Raw folder in Android studio

Whenever I copy mp3 file to raw folder in Android studio it by default take it as yml file type ...please help me fix this I try to make a app to stop and start service in background..but the raw folder store my song in yml file type...so it's not…
0
votes
0 answers

typeorm RAW is not covered in jest

Unit testing using jest is done in the code. But Raw of typeorm is not covered queryobj.where.name = Raw( () => `( "Tag__templateTag__template"."state" = '${TemplateState.Published}')`, ) Raw is tried mock using…
Anto P V
  • 24
  • 2
0
votes
2 answers

How to pass a variable in join query in Laravel

I have a variable that I would like to pass in a joined RAW query. How can I do that ? $current_user_id = Auth::user()->id; $query = DB::table('users as u') ->selectRaw(' ROW_NUMBER() OVER (ORDER BY u.id) AS No, u.id, …
desh
  • 627
  • 1
  • 7
  • 19
0
votes
1 answer

How to ignore a scape of a word character in a python string with two consecutive apostrophe

Escape Issue Hello all, I have the bellow python string and I am trying to basically to ignore the '' scape characters. My Goal is to have the two single apostrophe before and after the DD but the raw string is not working as expected as seen in the…
Edward
  • 1
  • 1
0
votes
0 answers

How to pass value to a [FormBody] variable from RestAssured?

I have a web api method as given below // POST api/values public void Post([FromBody] string value) { names = names.Concat( new string[] { value } ).ToArray(); } I would like to pass value to a "value" variable…
0
votes
1 answer

'DataFrame' object has no attribute 'raw_ratings'?

param_grid = {'k': [10, 20, 30], 'min_k': [3, 6, 9], 'sim_options': {'name': ["cosine", 'pearson', "pearson_baseline"], 'user_based': [False], "min_support": [2, 4]} } # Performing 3-fold…
0
votes
0 answers

Print from browser without dialog box

A button on the website, when clicked will send print to the printer from browser without dialog box. I don't want to install anything on client's computer. Help required! I tried JSPrint Manager but it required a client software to install on…
Shafique
  • 13
  • 3
0
votes
0 answers

Extract WAV from RAW database file

I have a .raw file. The header seems XML and the included files .wav. What I know is the filename, the offset and the filesize of the particular files. What I've tried is extracting a .wav from the .raw file with: dd bs=1 seek=1147710 count=455346…