Questions tagged [mixing]
245 questions
1
vote
1 answer
Create mixed audio file from two or more mp3 files
I've trying to create a single synchronous audio output file from two or more than two audio files of same length.
I have done some research and came to know that this can be achieved through below steps:
Only uncompressed audio files can be used…

Vinay
- 1,859
- 22
- 26
1
vote
1 answer
rotation LESS mixin IE compatibility
I'm working on a bulletproof Mixin LESS file and i have a problem with the "rotate" property for IE8 and below.
According to this post, to rotate an element on IE you have to use the following property:
filter:…

PAdrian
- 412
- 3
- 9
1
vote
3 answers
calling .cpp function in .m and .mm file, error
i am trying to integrate my own small cpp project into a big objective-c project. I have compiled my own project into a .dylib file and added into the big project, and .h file is included. But in order to follow the legacy i have to call my…

user3188926
- 29
- 4
1
vote
1 answer
database design: can you mix many-to-many and many-to-one relationships?
Let's say I have two tables, FirstTable and SecondTable. They have a one-to-many relationship, so SecondTable have a foreign key: FirstTableID. I have to redesign the database as in (very) rare cases a SecondTable entity can belong to more (usually…

user3156850
- 85
- 1
- 7
1
vote
2 answers
BufferyStrategy returns an error
I am trying to make a game so I started creating all the drawing methods and ways, so I can begin with the graphics work, but when I am creating my bufferyStrategy, java returns an error.
Why is that error happening?
Exception in thread "Thread-0"…

Artemkller545
- 979
- 3
- 21
- 55
1
vote
2 answers
mixing user session data in jboss
if someone can help with JBoss returning data from wrong user. Our setup is JBOSS 7.1.1 with Vaadin 7.1.6 and Shiro.
Our current problem is when multiple users use our Vaadin application it frequently returning data from other users to another…

user1200936
- 21
- 1
- 3
1
vote
1 answer
Django mixes my templates
System: Debian Wheezy, Django 1.5
Hello everyone,
I am pretty new to Django and I have already encountered a problem that I can't find the solution for. Moreover, I have a little project with 4 or 5 apps in it and I am trying to navigate from one…

Rincer
- 23
- 1
- 6
1
vote
2 answers
what is wrong with the java keylistener?
I keep getting an error message:
Multiple markers at this line
- The type Main must implement the inherited abstract method KeyListener.keyTyped(KeyEvent)
- The serializable class Main does not declare a static final serialVersionUID…

Atlantis
- 592
- 5
- 23
1
vote
2 answers
Compass compile error on Sencha Touch 2.2.1, undefined $font-family value and mixin problems
Using this tutorial with Sencha Touch 2.2.1, I'm not able to compile my project because of an undefined $font-family variable:
error application.scss (Line 2 of _Class.scss: Undefined variable: "$font-family".)
Sass::SyntaxError on line ["2"] of…

Pompeyo
- 1,459
- 3
- 18
- 42
1
vote
2 answers
How to open the text file on the same frame when it runs first time?
I have made a small notepad demo and I am trying to open the file in same frame in the main frame but while opening the file it opens in different frame, I want it open in the first frame that opens when I run the program.
import java.awt.*;
import…

Make
- 422
- 2
- 6
- 17
1
vote
1 answer
How to create a dynamically updating GUI using MyCanvas in Java?
How does one go about dynamically updating a GUI created with MyCanvas in java? I'm trying to program a board game called Lotus.
This is a description of the game:
Players attempt to maneuver their playing pieces (10 in the two-player version, six…

Bob Shannon
- 638
- 2
- 10
- 19
1
vote
1 answer
What is the difference between mixin module and mixin::with module in perl?
I don't know what's the difference between the mixin and mixin::with module?
package Dog;
sub speak { print "Bark!\n" }
sub new { my $class = shift; bless {}, $class }
package Dog::Small;
use base 'Dog';
sub speak { print "Yip!\n"; }
package…

Chinaxing
- 8,054
- 4
- 28
- 36
1
vote
0 answers
LNK2005 error when mixing static and dynamic libs
I am trying to create DLL ficus.dll which links to a static lib utils.lib, and a dynamic lib (called crux.dll using crux.lib)
When generating crux.dll, I also included utils.lib as part of it.
I am getting these errors when…

Rick White
- 11
- 3
1
vote
1 answer
Django CreateView with signals?
I have several models using CreateView:
class JsonResponseMixin(object):
def is_valid(self, form):
...
return HttpResponse(json.dumps(data))
...
class CarCreate(JsonResponseMixin, CreateView):
model = Car
form =…

iMom0
- 12,493
- 3
- 49
- 61
1
vote
2 answers
artifacts when mixing wav files with libsndfile
I am trying to implement a piece of software that mix piano samples. I want to create a wav file containing one sound, the other and a mix of both.
I trunc the samples at one second so I have the following :
[one second of sound 1][one second of…

user1832968
- 13
- 4