-
Fl Studio Not Making Sound카테고리 없음 2020. 1. 23. 02:55
I just got flstudio and I'm new to it, so I started creating music and I experienced very annoying thing. When I place a note in piano roll, or when I move a note from one place to another, a sound (that note) is being played.
Jul 04, 2009 I had made a song on FL Studio (Demo version), and i tried recording something into edison audio editor. Then i wanted to play what i recorded but nothing played, it just showed the volume levels. So i exit that and try playing my song but the song won't play now. May 04, 2018 Re: not playing sound in drum sequencer on FL studio mobile Yes, it is only for drums, others are playing well. When I press play, the playing position changes and other beats play sound but the drum beat doesn't play any sound. Next time FL goes silent shut it down, shut down all other apps that can produce sound (even a browser) then restart FL. Chances are it will be able to grab the sound card and work. I haven't used ASIO4ALL in awhile but there might be a setting to change this behavior (at some risk of compatibility and latency).
How to prevent it?My english is bad, so if it is unclear what I'm talking about, here is screenshots. Here is when I and here is when I. In both cases a sound is played (sound of the note). I don't want to hear a sond when I place or move note. I want sound only to be played when I click 'Play' button. How to achieve it?I searched on the whole internet and I spent more than a week searching in options and setting stc, but nowhere I found answer.
Simply, I don't want to hear anything while I'm editing piano roll. I want only to hear song when I press play button, not while I'm editing.
How to do that?This is my temporary solution, which is very bad: I made a program in c which mutes all sounds in computer while I'm editing piano roll and when I finish editing piano roll, then I go to my c program, enable sounds and then play song. I am sure there is better way and I'm sure there must be an option in fl studio to achieve exactly what I want.
I don't want to create external programs just in order to remove annoying sounds from fl studio. I want to do it natively.So, if anything, absolutely anything, is unclear in my question (due to my bad english), then feel free to ask and I'l explain whatever is not clear. I tried my best to explain as brief as I could, I hope it is clear what I want and what I've tried and what the problem is. There is no native way to achieve it in FL Studio. However, there are other ways to achieve it. Here are some methods that may be helpful. Method 1 - AutoHotkeyThe easiest way to achieve something similar is to use AutoHotkey script.
The script is extremely simple: SPACE:: SoundSet, +1, MuteWhen you run this script, it will allow you to mute/unmute system sound on Space key press. Good thing is that FL Studio uses space key to play/pause soundtrack or piano roll track, so you can basically edit your piano roll (while the system sound is muted) and then press space, which will unmute the system sound and play the track at the same time. When you press space again, it will stop the sound track and mute system sounds again.
Fl Studio Not Making Sound
Method 2 - Modify assembliesWhile method 1 is very simple and practical, although not exactly what the OP has asked. But, if you want to mute only piano roll sounds on placing a note, then the things becomes very hard. FL Studio didn't provide a way to achieve it, so if you really need exactly it, you'll need to disassemble binaries and modify executable files and dinamic linked library data.First off, note that disassembling binaries is extremely hard job and even very experienced developers in that field of computer science may spend more than few months on debugging hard coded assembly procedures.I'm definitely not going to spend time on trying to achieve it, the life is not long enough. If you don't have anything smarter to do in your life, then you should start by reading and understanding the following topics and programs:.
I suppose you're on Windows, so you should. Study the. Read about the. Learn,. Understand, then, and. Learn how to and how to modify assigned dll file (see )To start, you'll need to write your own memory inspector tool in C. Again, I'm assuming that you're on Windows.
Fl Studio Not Playing Audio
You can read on about functions like CreateProcess and similar ones and how to use them to view and modify another process memory regions. If you want to do it from scratch, you'll need to write your own assembler/disassembler and inspect memory regions of FL Studio's spawned process, then find procedures and functions which work with the piano roll, then modify them and replace with your own procedures which do exactly the same things except playing audio.
FL Studio must call some Windows native functions from gdi32.dll or user32.dll, or even kernel32.dll in order to play sounds. Find them, create a script which modifies these procedures and attach the script to FL Studio process. Once you modify the procedures, they will not be changed anymore.How you can find which assembly functions play the sound in the piano roll? There is no universal answer to this question. It is sometimes hard to understand even some high programming language like Python, but in order to understand the lowest possible language (assembly language), you better prepare for a lot of work. It is not impossible, you need to try different approaches, try to modify random procedures to check if the process crash, try to use some stack trace algorithms and inspect which function preceded the current function, etc. These are just some general tips on how to start.Not related to this question, but I'll suggest you to see post.
There I explained how to modify assembly codes in order to suppress Chrome's warning. I spent more than a month on that project, so I'm pretty sure it will not be easier in FL Studio either. Basically, there seems to be no 'simple fix' for this problem of yours. I don't use FL Studio, but I've searched the, help documents and related threads and I can't see an option to disable the preview sound. FL studio seems like it has a lot of confusing settings with little customization options. If there were custom key commands, this would be a lot easier.
But we are stuck using the to attempt a workaround.You would have to try these options out for yourself, because as I said, I don't use FL Studio, so I'm just going by what I've read and what I know from other DAWs.The first option is to mute the notes before moving them. You can double right-click then hold it and select multiple notes to mute. Or press ctrl + A to select all notes, then T to select the mute tool, and left-click the notes. You would need to also un-mute them when you want to play back. Not my favourite option, but you could attempt to create a macro(??)Another way is to mute the channel with keys 0-9,0 before you edit the notes, or even solo another channel with ctrl + 1-9,0.
This is most probably the simplest option.Another way is to use a custom (with a mute button) on the channel and keep the window open while you edit the piano roll. You can then mute/un-mute as you need.Another option carries over from the last; only this time, you create a control surface on the master channel. So you can mute all channels when editing the piano roll. This is my favourite option, but it might just be easier to click mute on the master channel.Another option; You should be able to select the velocity of inputted notes(before inputting). So you could set this to zero and only when you have finished editing and want to play back, select all ( ctrl + A) and change the velocity to an appropriate value. All DAWs I have used have this initial velocity option, so I'm sure FL Studio has it too.Other ways to mute the piano roll, but I couldn't find a shortcut command:Disable 'master send' on the channel.Disable the instrument on the channel.Mute the master channel.As I say, I am unable to test any of these so I hope they work. I'm sorry I couldn't find a better solution.
A software as big and well-known as FL Studio should have more customizable controls, macros and key commands. It's a real shame. But I hope this helps a bit at least.Good luck.