Could someone help me build gstreamer-bad from cvs?

I'm using Exaile as my music player and I would really appreciate if the equalizer worked.
The problem is that it needs gstreamer-bad cvs and I'm not good enough in linux to make it myself...
So if somebody would like help me create a script that could this automatically that would be great and maybe someone else will have use for it.
I've tried before and got help back then to and this is as far as I and that person (on from the forum) came:
# $Id: PKGBUILD,v 1.4 2006/12/30 22:31:21 jgc Exp $
# Maintainer: Jan de Groot <[email protected]>
pkgname=gstreamer0.10-bad
pkgver=0.10.4
pkgrel=1
pkgdesc="GStreamer Multimedia Framework Bad Plugins (gst-plugins-bad)"
arch=(i686 x86_64)
depends=('gcc' 'gstreamer0.10-alsa>=0.10.11' 'mesa')
makedepends=('intltool' 'pkgconfig')
url="http://gstreamer.freedesktop.org/"
groups=('gstreamer0.10-plugins')
_relname=gst-plugins-bad
source=(badconf)
md5sums=()
build() {
cd ${startdir}/src
msg "CVS Checkout Starting..."
cvs -d:pserver:[email protected]:/cvs/gstreamer co gst-plugins-bad
msg "CVS Checkout Done, or server error..."
cd gst-plugins-bad
. ${startdir}/src/badconf
rm -f ${startdir}/pkg/usr/lib/gstreamer-0.10/*.{,l}a
The problem with this is that it doesn't put the files in the /pkg folder... I don't know why...
This is the output that i get:
cc1: warnings being treated as errors
deinterleave.c: In function 'gst_deinterleave_process':
deinterleave.c:226: warning: 'ret' may be used uninitialized in this function
make[3]: *** [libgstinterleave_la-deinterleave.lo] Error 1
make[3]: Leaving directory `/home/rob/bad/src/gst-plugins-bad/gst/interleave'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/rob/bad/src/gst-plugins-bad/gst'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/rob/bad/src/gst-plugins-bad'
make: *** [all] Error 2
==> Removing info/doc files...
==> Compressing man pages...
==> Stripping debugging symbols from libraries...
==> Stripping symbols from binaries...
==> Generating .FILELIST file...
tar: *: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors
==> Generating .PKGINFO file...
==> WARNING: Please add a license line to your PKGBUILD!
example for GPL'ed software: license=('GPL').
==> Compressing package...
tar: *: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors
==> ERROR: Failed to create package file.
EDIT: Yeah also the badconf file is needed... It can be found here: http://cvs.archlinux.org/cgi-bin/viewcv … ag=CURRENT
Last edited by Izuil (2007-05-21 18:58:06)

I'm not quite sure, but I think that equalizer will work only with svn gstreamer core. You might want to try rebuilding both of them

Similar Messages

  • Hello! I have some my violin recorded audio files and want them to be converted to printable notation throw "audio to score"from Factory. But do not have a normal result. Could someone help me, please. .

    I have some my violin recorded audio files and want them to be converted to printable notation throw "audio to score"from Factory. But do not have a normal result. Could someone help me, please. .

    seeren wrote:
    Normal result is on the sloppy side of inaccurate.
    Wish I'd started this topic so I could give you a green star!
    Great description.

  • Hello, Could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to 6 on the desktop. Thanks.

    Hello, could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to six on my desktop?  Thanks.

    Products
    if that link doesn't work for you contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • Could someone help me and telling me how I do a copy from one song. don't tell me press the button copy - doesn't work anymore!!!

    could someone help me and telling me how I do a copy from one song. don't tell me press the button copy - doesn't work anymore!!!???

    i made a "playlist" and did some aac-version, because i need the songs for different length of time. but some of this songs i need the same way (i teaching aqua gym lessons). and earlier i could made a copy and past and it worked. but now, nothing worked! everytime something is different.
    sorry, actually i am not so good in english to explain my problems i prefere german.

  • Please can someone help,i bought an iphone from the states,i put a sim in ,i could make phone call,but i couldnt surf ,it seems that something is wrong and when i click on wireless nozhing happen,

    please someone help i bought an iphone4 from the states, i put the sim card in, icould make a phone call,thats ok but i couldnt open the opera,and when i click on wireless on buttom nothings happen.

    Are you talking about an unlocked version?  If an iPhone is locked to AT&T in the U.S., anyting is fair game outside of AT&T's network. (You can always use WiFi, though.)

  • Could someone help me out how to insert a Node properly into a DOM?

    I am trying to insert a Node built from a String to a DOM.
    Here is how I created the Node
                   Detail = "<Detail><Msg>Detail Message</Msg></Detail>";
                   prolog = "<?xml version="1.0" encoding="UTF-8"?>";
                   Node DetailNode = null;
                   Document DetailDoc = null;
                   if( Detail != null ){
                        Detail = prolog + BiometricDetail;
                        DetailDoc = xp.XML2DOM( BiometricDetail ); // transform a XML String into a DOM.
                        DetailNode = BiometricDetailDoc.getDocumentElement();                    
    Here is how I created the DOM
                   javax.xml.parsers.DocumentBuilderFactory factory = javax.xml.parsers.DocumentBuilderFactory.newInstance();
                   javax.xml.parsers.DocumentBuilder builder = factory.newDocumentBuilder();
                   Document document = builder.newDocument();
                   Element beeE = document.createElement("BeeSets");
                   Element grpE = document.createElement("Group");          
                   bioE.appendChild( grpE );
                   // the document looks like "<BeeSets><Group></Group><BeeSets>";
                   // After inserting the Node DetailNode, I want it to look like
                   // "<BeeSets><Group><Detail><Msg>Detail Message</Msg></Detail></Group><BeeSets>";
    Now when I tried to insert the node DetailNode to the DOM document, I tried
    1) document.importNode( DetailNode, true );               
    No exception was thrown. But when I transformed the DOM document back to a String, I could not see the information from the newly imported Node DetailNode.
    When I tried
              grpE.insertBefore( BiometricDetailNode, dataE );
    I got the following exception.
         org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.
         at org.apache.xerces.dom.ParentNode.internalInsertBefore(Unknown Source)
         at org.apache.xerces.dom.ParentNode.insertBefore(Unknown Source)
         at com.jadcs.bioidentity.role.base.RP.getNodes(RP.java:497)
    2) document.adoptNode( DetailNode );
    I got the following exception.
         java.lang.ClassCastException: org.apache.xerces.dom.DocumentImpl
         at org.apache.xerces.dom.DeferredTextImpl.synchronizeData(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ParentNode.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ElementImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ParentNode.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ElementImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.CoreDocumentImpl.adoptNode(Unknown Source)
         at com.jadcs.bioidentity.role.base.RP.getNodes(RP.java:509)
    3) detailStr = "<Detail><Msg>Detail Message</Msg></Detail>";
    Element detailE = document.createElement("Detail");
    detailE.setTextContent( detailStr );
    grpE.appendChild( detailE );
    This way gives result like "<BeeSets><Group><Detail><Detail><Flash>On</Flash></Detail></Detail></Group><BeeSets>";
    The content is messed up.
    Could someone help me out at how to insert a Node properly into a DOM? Thank you very much.

    Said another way, importNode actually only makes and returns a copy of the node you gave it (it will be a deep copy only if you pased true as the second parameter), but where the new dom you called import on is owner.
    So what you need to do is more like this:
    Node tempNode = domYouAreAddingTheNodeTo.importNode(node2copy,true); //true if you want a deep copy
    domYouAreAddingTheNodeTo.appendNode(tempNode);You can also traverse to any point in the DOM and insert the node there with the same method, but you always have to import first so that the DOM has a copy of the node that it owns.

  • Could someone help me out? ActionScript

    import flash.display.MovieClip;
    var clip:clip01 = new clip01;
    var clip2:clip02 = new clip02;
    var clip3:clip03 = new clip03;
    var clip4:clip04 = new clip04;
    var clip5:clip05 = new clip05;
    var files:Array = [clip,clip2,clip3,clip4,clip5];
    function randomizeArray(array:Array):Array
        var newArray:Array = new Array();
        while (array.length > 0)
    newArray.push(array.splice(Math.floor(Math.random()*array.length), 1));
        return newArray;
    var RandomArray:Array = randomizeArray(files);
    trace(RandomArray[0]);
    trace(clip);
    var c:MovieClip = MovieClip(RandomArray[0]);
    addChild(clip); // it’s OK
    addChild(c); // I get the error msg bellow:
    Scene 1, Layer 'movies', Frame 1, Line 29              1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.display:DisplayObject.
    Could someone help me out?
    I cannot add MovieClip on the stage from the array.

    I have done till this the following code bellow. I’d like movie clip on the
    stage to be playing one after another in a randomized order in a loop. I
    used a timer, but this solution is not good, because the movies are not
    playing till the end. I need an EventListener to listen the end of the clip.
    How this code could be modified to work well, could you give me a solution
    to this problem?
    import flash.display.MovieClip;
    var clip1:clip01 = new clip01  ;
    var clip2:clip02 = new clip02  ;
    var clip3:clip03 = new clip03  ;
    var clip4:clip04 = new clip04  ;
    var clip5:clip05 = new clip05  ;
    var files:Array = new Array();
    pushArray(clip1,clip2,clip3,clip4,clip5);
    function pushArray(c1,c2,c3,c4,c5:MovieClip){
                    files.push(c1);
                    files.push(c2);
                    files.push(c3);
                    files.push(c4);
                    files.push(c5);
    function randomizeArray(array:Array):Array
                    var newArray:Array = new Array();
                    while (array.length > 0)
                                    newArray.push(array.splice(Math.floor
                                    (Math.random()*array.length), 1)[0]);
                    return newArray;
    var RandomArray:Array = randomizeArray(files);
    var testTimer:Timer = new Timer(1000);
    testTimer.addEventListener(TimerEvent.TIMER,updateFile);
    testTimer.start();
    function updateFile(event:TimerEvent):void
                    if (RandomArray.length == 0)
                                    pushArray(clip1,clip2,clip3,clip4,clip5);
                                    RandomArray = randomizeArray(files);
                    trace('play file',RandomArray[0]);
                    RandomArray.shift();
    //RandomArray[0].addEventListener(Event.ENTER_FRAME, VideoFinished);
    function VideoFinished(e:Event):void {
         if (RandomArray[0].currentFrame==RandomArray[0].totalFrames) {
              trace("finished");
    //addChild(RandomArray[0]);

  • Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    bluztoo wrote:
    Haven't really used any of them including VLC - actually use netflix on the ipad more than anything. I was able to drop an mp4 into imovie on my ipad and see it there. This was something I had shot as avhcd and converted with turbo.264. Played fine. Probably not what you want for a movie player though.
    Well, turbo.264 is indeed very nice to have - even for converting full-sized movies. (Nevertheless, TechRadar's latest roundup (see http://www.techradar.com/news/software/applications/6-of-the-best-video-converte rs-for-mac-1074303 ; also linked from another roundup at http://www.iphonelife.com/blog/87/benchmark-excellent-multimedia-converter-handb rake-vs-commercial-apps ) has shown it's still worse than HandBrake in most respects.)
    All H.264 files (assuming they are H.264 level 4.1 or lower) are compatible with the built-in Videos app.
    bluztoo wrote:
    Those of you who use other players, what do you reccomend? Just curious.
    It entirely depends on your needs. The top players (AVPlayerHD / ProPlayer, It's Playing, GoodPlayer) all have different strengths and weaknesses. I myself use It's Playing the most as I convert everything into MP4 and simply love the DSP's (brightness / volume / saturation boosting). (Its software decoders are definitely worse than those of AVPlayerHD / ProPlayer; however, MP4's are played back from hardware.)

  • I have  Mac os x 106. When I try to send an attachment with email it won't send.  Please could someone help? Thank you.

    I have a Mac OS X 10.6 When I try to send an attachment with email it won't send - keeps saying 'fail'.  Please could someone help? Thank you.

    Hi lllaass! I replied to your post with the information you required but haven't heard from you since. If you don't, or can't help any further please would you let me know. Thanks.

  • Windows 7 very slowed after I downloaded ITunes. could someone help me?

    My PC with Windows 7 is very slowed since I downloaded iTunes. Could someone help me? Thank you

    All purchases from the iTunes Store including free and paid apps are included in your purchase history which cannot be deleted. Deleting an app from your iTunes library on your computer or on your iPad or iOS device does not remove the app from your purchase history.
    You did use iTunes to download the apps or they wouldn't be incldued in your iTunes Store purchase history.

  • I would like to change the owners name on my ipad2 to my daughters name and credit. Could someone help me figure this out?

    I would like to change the owners name on my ipad2 to my daughters name and credit. Could someone help me figure this out?

    Sign out from Find My Phone in iCloud, and sign out from your Apple ID in Settings/iTunes & App Store
    Then setup as a new phone with iTunes and when your Daughter sets it up for the first time she can add or set up her own Apple ID.
    Cheers
    Pete

  • My bootcamp download stops after a few seconds. it takes forever but does not move. Could someone help?

    my bootcamp download stops after a few seconds. it takes forever but does not move. Could someone help?

    For Windows Support Software: the download size is around 600MB - 1GB. Depends on your Mac Model. There are server problems but a good idea is to check from iStat menu's or something else if there is some activity.
    Also, make sure that in your network settings:
    Uncheck Automatic Proxy Detection
    Uncheck Passive FTP Mode

  • My ipod touch 4G got problem after update to iOS 6, it can not access the Apps store ,can not access safari,map, weather and so on, could someone help me to solve the problem, thanks in advance~~~

    My ipod touch 4G got problem after update to iOS 6, it can not access the Apps store ,can not access safari,map, weather and so on, could someone help me to solve the problem, thanks in advance~~~

    Force close the App Store app and reset the iPad. No data will be lost when you reset the device.
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • TS2755 Whenever I send a message to another iPhone user via iMessage it is sending my Apple ID instead of my phone number.  Could someone help me with this??

    Whenever I send a message to another iPhone user via iMessage it is sending my Apple ID instead of my phone number. Could someone help me with this???

    Check this article: iOS: About Messages
    Additional Information
    You can change your iMessage Caller ID setting on iOS devices in Settings > Messages > Receive At > Caller ID. Note that the Caller ID setting is used only for new conversations. If you would like to change the address from which messages are sent, first change your Caller ID, and then delete the existing conversation and start a new one.
    iMessage responses will be sent from the address the recipient most recently messaged. For example, on iPhone you can receive messages sent to your Apple ID and phone number. A friend sends you a message to your Apple ID. Responses in this conversation will be sent from your Apple ID, even if your Caller ID is set to your phone number.

  • FR Timing Mismatch Could someone help on this........

    Hi Gurus,
    Could someone help on this........
    We have been facing an issue with clock, that is when we generate the report from workspace and FR studio as well the clock is showing 1hr delay (11.05 on Reports, actual System time is 12.05) on reports but date is showing correctly, even though we called only time function from FR studio the same thing is happening and most important this is occurring only on production not Dev & Cat.
    We have checked Time zones and other settings also for ever env and server they are all in Sync, And this is happening for every account (User profile) that too on PROD env,
    And we are using V 11.1.2.1 windows 2008 R-2,
    Thanks in advance
    CHKK.

    Some more on this ......
    Doing a little research on the Oracle support site seems to show a pattern of potential report issues surrounding Daylight Savings Time, though 11.1.2.1 should be immune to most of them .... (see below)
    Additionally, another thought is to check which accounts are being used for the Hyperion services. Regional settings such as time, date, time zone are USER SPECIFIC. It could be possible that one of the accounts used by a service has a different time/date setting.
    ----------------------Listing of DST issues--------------------------------
    -----------FR DST Issue SHOULD NOT apply to 11.1.2.1 though!-----------
    Time Stamps for Financial Reporting Reports Do Not Reflect Daylight Saving Time (DST) [ID 804343.1] To Bottom
    Applies to:
    Hyperion BI+ - Version: 9.2.0.0.00 to 11.1.1.1.00 - Release: 9.2 to 11.1
    Information in this document applies to any platform.
    Symptoms
    After downloading the correct version of tzupdater.jar from the Sun Microsystems website and applied it to the web application JRE's, FR batch jobs and report updates are still showing Standard Time.
    Cause
    The cause of this problem is the tzupdater.jar was not applied to Hyperion\common\JRE located on the FR Reports server.
    Solution
    To resolve this problem take the following steps:
    1. Download tzupdater from the Sun Microsystems website.
    2. Apply tzupdater.jar to all locations on the BI+, Financial Reporting, and Web servers with JRE installations including the web application JRE's, per the instructions that Sun Microsystems provides.
    -----------Workspace and Analysis Foundation DST Patches -----------
    Hyperion Reporting and Analysis Foundation 9.3.1.3.x
    Oracle recommends applying Service Fix 9.3.1.3.00 Patch:9194189
    Hyperion Reporting and Analysis Foundation 9.3.3.x
    No Service Fixes necessary.
    Hyperion Reporting and Analysis Foundation 11.1.1.1.x
    Oracle recommends applying Service Fix 11.1.1.1.30 Patch:9483758
    Hyperion Reporting and Analysis Foundation 11.1.1.2.x
    Oracle recommends applying Service Fix 11.1.1.2.27 Patch:10135129
    Hyperion Reporting and Analysis Foundation 11.1.1.3.x
    Oracle recommends applying Service Fix 11.1.1.3.26 Patch:9730906
    Hyperion Reporting and Analysis Foundation 11.1.2.x
    No Service Fixes necessary.
    I had another thought on this too.....
    Regional settings (including time region / DST) are user specific.

Maybe you are looking for

  • How can I input my regular school schedule into iCal?

    I'm a student, and I want to make my regular school schedule appear as a sort of default event in iCal's day view. Is there any way to specify what my schedule is for the week, and have iCal propagate it to the rest of my calendar?

  • Add non-Roman characters to PDEText

    Hi everyone, Is there a way other than PDETextAddGlyphs to add non-Roman text to a PDETextObject. I've been trying to get Arabic and Cyrillic characters added to a PDEText object by adding the glyphs with no success. I'll list the method here so mayb

  • Vim color glitch using Xterm

    Hello, I recently started to use Xterm rather than urxvt, and there's a weird glitch when using vim. I have cursorline enabled, so the background of the cursor line is a different color from the regular background, and I used this config in urxvt and

  • Can breadcrumb navigation be built in DW using the Behaviors panel?

    I don't know enough javascript to code breadcrumb navigation, and I'm hoping that there is way to create breadcumb navigation using the behaviors panel, or some other feature in DW. Thanks!

  • Screen exit for BCT1

    I have created a screen exit for BCT0 transaction, the package for BCT0 & BCT1 transaction is same BPCT. But i m not getting subscreen in BCT1 transaction. Please tell me the solution for it.