User Profile

Collapse

Profile Sidebar

Collapse
ateale
ateale
Last Activity: Jun 12 '09, 10:27 AM
Joined: Jun 12 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • PyObjC, XCode 3, QTKit - accessing QT Timecode Track info

    Hi guys!

    I am having a bit of difficulty trying to get to a 'timecode' track in a QuickTime file using the QTKit framework in Mac OSX 10.5
    I am using XCode 3.

    I have a QTMovie object (set as self.movie) and I can get my python fingers into it a little.
    This is what I can get to so far
    Code:
    		allTracks = self.movie.tracksOfMediaType_("tmcd")
    		if len(self.movie.tracks()) > 0:
    ...
    See more | Go to post

  • ateale
    started a topic get filepath for FTP upload
    in Ruby

    get filepath for FTP upload

    Hi Guys,

    Can anyone advise on how to get get a file's filepath via a form?

    I am working on using a form to allow a user to select a file, then the
    app uses FTP to transfer the file to the server.

    As part of ftp you must supply it the location/filepath of your file.

    I am using the form element 'file_field' - which does
    return a filepath - but not really!

    eg.,...
    See more | Go to post

  • RoR newbie - file/directory browser and mysql table questions

    Hi Guys,

    I am using ruby on rails trying to develop a basic cms/dam for our company.

    The work we do is post production for television commercials. Each tv commercial we do broken down into 'shots' (or edit), and each shot usually goes through multiple versions/iterations. And lastly each of these shots incorporates elements from 2d and 3d artists - each having multiple versions.

    What I want to do is find...
    See more | Go to post

  • got it!

    Mystuff.find(:i d).title
    See more | Go to post

    Leave a comment:


  • how to create a ruby variable from a database column entry?

    Hi Guys,

    I am trying to get up to speed with Rails and enjoying it so far

    One thing I cant work out so far and has eaten up most of my day!:
    how to find an entry in a database and set it as a ruby variable?

    I want to find the 'title' an an id/entry in my mysql DB and then use ruby to create a directory on my machine with that title as the name

    Any ideas? I hope that makes some sense!...
    See more | Go to post

  • i think I am making a bit more sense of it.

    I CAN run a os.listdir('/blahblah')

    But I CANNOT run a os.mkdir('/blahblah/test')

    I am guessing it is because I need to somehow 'login' to my machine via the webbrowser to have permissions to do this?

    I am totally clueless!

    Thanks for any help!

    Adam
    See more | Go to post

    Leave a comment:


  • ateale
    started a topic web server based script to do OS things - CGI ?

    web server based script to do OS things - CGI ?

    Hey Guys

    We have recently got an Apple xserve running OSX 10.4.

    I am trying to learn about creating python apps that I can run within a web browser

    I can to simple things such as 'print "Hello" etc...

    But I want to run scripts that will create directories and move files that are on a Volume on the xServe.

    When I try to do it now I get errors - i guess it is all to...
    See more | Go to post

  • ateale
    replied to question about XML parsing
    Hey BartonC thanks a lot!
    That is really really cool!

    I'll play around with that for a while!

    Cheers mate!...
    See more | Go to post

    Leave a comment:


  • ateale
    started a topic question about XML parsing

    question about XML parsing

    Hey Guys,

    I am discovering the awesomeness that is XML.

    I use an application called Final Cut Pro for editing video. The app is able to export is projects as XML.

    I am trying to develop a script to read that script and build a list of the files that are listed in the XML. The projects' imported files are enclosed in the 'pathurl' tag in the XML file.

    It is nearly working but I just wanted...
    See more | Go to post

  • ateale
    replied to Python app running inside web browser
    I just found this link

    http://www.cs.virginia .edu/~lab2q/lesson_1/

    it seems to have a good tutorial on running py scripts through a browser.

    I wish there was a simple script to convert my wxpython scripts into browser compatible ones! no problems though!
    See more | Go to post

    Leave a comment:


  • ateale
    started a topic Python app running inside web browser

    Python app running inside web browser

    Hey guys,

    If I have created a GUI app using wxpython is it possible for it to work inside a web browser - over an intranet?

    Or is there a proper way to do this?

    Thanks for any help!

    Adam
    See more | Go to post

  • Thanks mate! Let's see how it goes!
    See more | Go to post

    Leave a comment:


  • Post Production house looking for Python guru/user in Bangkok, Thailand

    Hi Guys,

    I work for a small television commercial post-production facility in Bangkok, Thailand.

    We are in the process of setting up our workflow management and are now looking to buy/build a Media Asset Management system (or is it Content Management System - MAM / CMS?).

    I googled around and found that there are a few available solutions for Mac OSX (i'm not completely sure if they will do exactly what...
    See more | Go to post

  • Hi Motoma!

    Thanks for the tip. That will do most of what I want.

    But is there also a way to stop the user who created the file in the directory from deleting the file?

    Thanks mate!

    Adam
    See more | Go to post

    Leave a comment:


  • ateale
    replied to reading an xml file
    :) haha! That's what happened to me! Great, thanks for the link BartonC!
    See more | Go to post

    Leave a comment:


  • ateale
    started a topic reading an xml file

    reading an xml file

    Hi Guys,

    Can anyone give me a good place to start about learning to read xml files with Python?

    I have a bunch of XML files i'd like to go through and change some variables in.

    If there is a nice python GUI app to do this I'd be really interested in checking it out.

    Thanks for any help!

    Adam
    See more | Go to post

  • i've had a little look around. It seems I need to set up something called am "Access Control List" in Unix

    Does this sound correct?

    Thanks
    See more | Go to post

    Leave a comment:


  • ateale
    started a topic Permissions to allow write & read - but not delete?

    Permissions to allow write & read - but not delete?

    Hi Guys,

    Is it possible to give a folder permissions so that files can be written to it and read from it, just not deleted?

    Thanks!

    Adam
    See more | Go to post

  • Thanks BartonC !
    I had a look and tried to use:
    font = wx.Font(10, wx.FONTFAMILY_M ODERN, wx.NORMAL, wx.BOLD)
    wx.Window.SetFo nt(self, font)

    but it doesn't change anything

    I don't think i really understand the wx.window and inheritance thing. I read about inheritance in the doc, but I don't understand how to apply it to my script

    i just realised I am using wx.Frame not wx.Window -...
    See more | Go to post

    Leave a comment:


  • Changing font style/size for overall wx.python GUI look

    Hey guys

    I have had a bit of a hunt around on google to try find out how to change the overall default font style/size for a wx.python app - but not had any luck.

    Does anyone have any idea if it is possible?

    All I really want to do is make the wx.StaticText, wx.CheckBox, wx.TextCtrl & wx.Button fonts smaller in my GUI app

    Thanks if anyone can give me some pointers!

    Cheers...
    See more | Go to post
No activity results to display
Show More
Working...