Search Results

Search found 3 results on 1 pages for 'mabwi'.

Page 1/1 | 1 

  • Problem getting video from DVD

    - by mabwi
    I have a DVD that a customer needs me to pull ~5 minutes of video from, and convert it to FLV to play on their website. I downloaded AVS Video Converter and tried to use it to convert the VOB file to FLV, with the thought of editing after, and also tried MPEG. Both times it froze up. I then tried to just copy the file from the DVD to my hard drive, thinking that maybe the disc access was slowing things down too much. I got a "Cyclic redundancy" error from Windows while doing that, and it stopped copying. Is the file corrupted? Is there any better way to get it from the DVD player? I only need 5 minutes of 1.5 hours, so if I can avoid converting the entire thing then editing, that would be awesome Thanks for your help

    Read the article

  • MySQL Query: Winning Auction Bid

    - by mabwi
    I have a small Bidding system that I'm using for a fantasy auction draft. I'm trying to use the below query to pull up the max bids on each player. However, it's not actually giving me the max bid, it's just giving me the first one entered in to the database. SELECT Bid.id FROM bids AS Bid WHERE Bid.active =1 GROUP BY player_id HAVING MAX( Bid.amount ) Here's the Bid table layout, in case it helps: CREATE TABLE IF NOT EXISTS `bids` ( `id` int(10) NOT NULL AUTO_INCREMENT, `user_id` int(10) NOT NULL, `player_id` int(10) NOT NULL, `amount` int(6) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `winning_bid` int(1) NOT NULL DEFAULT '0', `active` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;

    Read the article

  • Manually Building a Tree in CakePHP

    - by mabwi
    I'm currently working on building an application in CakePHP. There's a quite extensive existing data set that's conceptually a tree, but wasn't previously stored as one. What I mean by that, is there's no real relationship defined in the data. The problem I'm having is getting it to work correctly with the CakePHP tree behaviour. Because I have to set all the values on existing data - as opposed to Cake setting up the structure as elements are inserted - I need to understand how the lft/rght values work. So, I guess the question is: How does the structure data work, specifically the lft/rght values? How do I set it up so that the data comes out rationally, without inserting them one at a time? It's a 2 level tree, with Sections and sub-sections. Thanks for the help

    Read the article

1