Search:

Type: Posts; User: 6h057

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    1,411

    VS 2017 Re: Emgu OCR problems

    Ok, I got it. Last problem is because I use 64bit set and have to convert my app into 64 bit.
    This two videos help, I made exactly like on the video and works.
    ...
  2. Replies
    5
    Views
    1,411

    VS 2017 Re: Emgu OCR problems

    Thanks Peter for reply. I replaced with your code but now I have an error BC30560 'Tesseract' is ambiguous in namespace 'Emgu.CV.OCR'. :/
  3. Replies
    5
    Views
    1,411

    VS 2017 Emgu OCR problems

    Hi all,

    Im trying to use emgu OCR package to recognize text.
    I had some problem with installation via nuget this packages but finally done.
    (I made migration from packages.config to...
  4. Replies
    4
    Views
    831

    VS 2017 Re: Check for updates-dll files

    thanks it works. But I have to put "new creator" in separate procedure, because if it's in on_load I can't modify file before msgbox. Below code works for me, thanks all for help


    Public Class...
  5. Replies
    4
    Views
    831

    VS 2017 [RESOLVED] Check for updates-dll files

    Hi all,

    Im working with "check for updates" module in my app.
    And first question - what is the best way to do that?(any good links desired).

    Second issue. At this moment I have "start app"...
  6. Replies
    1
    Views
    688

    VS 2017 Re: NAudio - not precisely trimming

    Ok, double instead of integer:)

    Dim bytesPerMillisecond As Integer = reader.WaveFormat.AverageBytesPerSecond / 1000

    Dim bytesPerMillisecond As Double= reader.WaveFormat.AverageBytesPerSecond...
  7. Replies
    1
    Views
    688

    VS 2017 [RESOLVED] NAudio - not precisely trimming

    Hi all,

    Can someone help to fix/understand why below code trimming wav file not exactly 9000ms as I set but 9686ms?
    I based on known code flowing on the internet.
    First checking duration of wav...
  8. Replies
    7
    Views
    1,521

    VS 2017 Re: [RESOLVED] Embedding font

    Ok, I solved as below.


    Public Collection As PrivateFontCollection

    Label1.UseCompatibleTextRendering = True

    Collection = New PrivateFontCollection
    Dim bytes() As Byte =...
  9. Replies
    7
    Views
    1,521

    VS 2017 Re: [RESOLVED] Embedding font

    Try now
    183577
    183578
  10. Replies
    7
    Views
    1,521

    VS 2017 Re: [RESOLVED] Embedding font

    Hmm, this parameter couse this, during resizing the form. Any ide how to fix this?
    183570 INTO THIS 183571
  11. Replies
    7
    Views
    1,521

    VS 2017 Re: Embedding font

    Thank you Poppa Mintin. Indeed this propertie solve the problem. Why nobody put this important thing!!! :)
    Set the ‘UseCompatibleTextRendering property ‘, to true (the default is false)
  12. Replies
    7
    Views
    1,521

    VS 2017 [RESOLVED] Embedding font

    Hi all.
    Im trying to embedd font in my application. Trying a few codes and all not working. For example below code from here...
  13. Replies
    4
    Views
    14,193

    Re: Embedding custom fonts into your application

    For me it was a missed element

    "Set the ‘UseCompatibleTextRendering property ‘, to true (the default is false)"
  14. VS 2017 Re: [RESOLVED] NAudio - add silence into existing wav file

    Yes, You are absolutely right. Thank You for your help.
  15. VS 2017 Re: [RESOLVED] NAudio - add silence into existing wav file

    Somone have any idea why this function write a little bit less silence than I set? When I set 1 minute(60000ms), I got 59864ms.
    writer.WaveFormat.AverageBytesPerSecond is 176400 (44100). Should I...
  16. VS 2017 Re: NAudio - add silence into existing wav file

    Ok I got it. If someone need, I added code into existing function for trimming(from internet). TrimWavFile normally do work but if you add last parameter "cisza" it add silence on the end of...
  17. VS 2017 Re: NAudio - add silence into existing wav file

    Can't be. It must be done by my application

    I have code for generating file with silence and if will not find solution I will generate file with silence and next join two files - not sophisticated...
  18. VS 2017 [RESOLVED] NAudio - add silence into existing wav file

    Hi all,

    I have some code for recording, trimming and joining wav files and it works fine.
    How can I add silence with specific duration on the end of wav file?



    'button1
    wavein = New...
  19. VS 2019 Re: Naudio - recording from a specific point in time

    Ok, device number works correctly.

    Now I want to trim part of wav file to reach "recording from specific point". I translated this code from C#


    Public Sub TrimWavFile(ByVal inPath As...
  20. VS 2019 Re: Naudio - recording from a specific point in time

    Ok, I will try, but please tell me how to set in naudio recording device. I spent hours and can't find. I know how to list devices, but how to indicate specific number


    wavein = New WaveIn()...
  21. VS 2019 Re: Naudio - recording from a specific point in time

    Ok, but If I will join files with that way, the result wav file will be correct? There is no marks inside wav file which tell about type of file or other parameters?
  22. VS 2019 Naudio - recording from a specific point in time

    Hi all,

    I based on this solution to recording from microphone and its working.
    https://github.com/naudio/NAudio/blob/master/NAudioDemo/RecordingDemo/RecordingPanel.cs
    but can't find function to...
  23. Replies
    12
    Views
    3,197

    VS 2010 Re: [RESOLVED] NAudio installation help

    Ok, to complete solution for my case.
    After installation Visual Studio 2019 problem still existed.
    To solve the problem in project settings I change "Target framework" for newest availabe(earlier I...
  24. Replies
    12
    Views
    3,197

    VS 2010 Re: NAudio installation help

    Ok, I think that someone can remove this thread. I'm installing Visual Studio. Currently I have Visual Basic 2010 Express. Sorry
  25. Replies
    12
    Views
    3,197

    VS 2010 Re: NAudio installation help

    Can You please share direct link to dll of Naudio you downloaded? I will try again to add reference maybe in new project
  26. Replies
    12
    Views
    3,197

    VS 2010 Re: NAudio installation help

    Hmm I think I can do this for You;)


    Imports System.Runtime.InteropServices
    Imports NAudio.Wave
    Imports NAudio.CoreAudioApi

    Public Class Form2

    Private waveFile As WaveFileWriter
  27. Replies
    12
    Views
    3,197

    VS 2010 [RESOLVED] NAudio installation help

    Hi,

    Someone can help with installation of NAudio library?
    I added reference to naudio.dll then Imports Naudio.Wave and have errors.
    I found few threads on this forum about naudio but without...
  28. Replies
    2
    Views
    941

    VS 2010 Re: mciSendString - get length of wave

    Sorry but your code not working for me


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim str As String

    ...
  29. Replies
    2
    Views
    941

    VS 2010 mciSendString - get length of wave

    Hi all,

    I spent couple of hours trying to get length of wave file. I have simple code



    Dim lengthBuf(256) As Char
    mciSendString("open ""C:\Users\Michadzia\Desktop\ggg.wav"" Type...
  30. Re: Recording voice from specific position in file

    Ok, thanks all for help. The solution to record some audio then stop and record again ex last 5 seconds is:


    mciSendString("open new Type waveaudio Alias recsound", "", 0, 0) ' open new recording...
  31. Re: Recording voice from specific position in file

    Someone know where to find all commands for mcisendstring? Maybe there I'll find something interesting

    mciSendString("open new Type waveaudio Alias recsound", null, 0, 0);
    mciSendString("set...
  32. Re: Recording voice from specific position in file

    Problem is that I can't find any code to achieve what I wrote above. I can only record audio once to one file


    Imports System.Runtime.InteropServices
    Public Class Form1
    Dim Filez As String...
  33. Re: Recording voice from specific position in file

    Im using mciSendString
  34. [RESOLVED] Recording voice from specific position in file

    Hi all,

    Is it possible to resume recording voice via microphone from specific position in file?
    Example.
    Im starting recording and after 5min I made mistake, now I want to record again last...
Results 1 to 34 of 36



Click Here to Expand Forum to Full Width