-
Content Count
493 -
Joined
-
Days Won
13
Everything posted by Remus Avram
-
not able to jump back to the first frame if frameIn not -1
Remus Avram replied to Remus Avram's topic in General discussion
Hi Mattias, thanks for looking into this. We found the issue. It's from our side. Sorry for the confusion. -
Hi, If we upload web-playable clips to ftrack.server location with `frameIn` = 0, we are not able to jump back to the first frame when we review frame by frame in the web review. We are able to jump back to the second frame latest. If we set `frameIn` in the metadata of a component of a version to -1 we are able to jump back to the first frame.
-
Hi Ftrack Team, the component name is not unique. We are able to create components on a AssetVersion type with the same name. Code example: import ftrack_api session = ftrack_api.Session() unmanaged_location = session.query('Location where name is "ftrack.unmanaged"').one() version = session.query("AssetVersion").first() version.create_component( "/path/to/a/file.txt", data={'name': "main"}, location=unmanaged_location ) session.commit() version.create_component( "/path/to/a/file.txt", data={'name': "main"}, location=unma
-
Hi all, is there a reason why frameIn on the web-playable component requires to be 0? If it doesn't start from 0, then it is not possible to play the clip in the web review frame by frame.
-
Hi all, I would like to click on the thumbnail of a version in order to play it. If there is no thumbnail on the version, then the play button is not appearing.
-
How to make publish look like published by another user?
Remus Avram replied to vitek's topic in API
Hi @vitek you can set the specific user to the "published by" attribute in the "Info" tab. I didn't find a way to change it in the "Activities" tab. Why are you using a dedicated API key for publishing? -
Hi @vitek which version of ftack-api and ftarck server are you running? The example below works for us: import ftrack_api session = ftrack_api.Session() task = session.query("Task where name is cacatcacat").one() note_category = session.query("NoteCategory where name is 'Internal'").one() content = "this is just a test" user = session.query("User where username is '<username>'").one() note = session.create("Note", { 'category': note_category, 'content': content, 'author':
-
time tracking: set defult start time when enter 9h
Remus Avram replied to Remus Avram's topic in General discussion
We created an action which checks if the start time it's set to midnight and if it is, then it updates it to 10:00AM. -
can you try to install libpng12 and run again?
-
Which version of ftrack-connect-package are you testing? I am testing with 0.7.5 and it works for me. Can you open ftrack -connect-package/common.zip/Qt.py and print the bindings variable? (line 235)
-
Which version of Qt.Py are you running? Can you check if you have PySide or PyQt4 in the PYTHONPATH? I would suggest setting a debugger in Qt.Py where the error is raised https://github.com/mottosso/Qt.py/blob/master/Qt.py#L1676 and check what you have in the environment at that moment. Try to run the import manually to check if there is an import error.
-
time tracking: set defult start time when enter 9h
Remus Avram replied to Remus Avram's topic in General discussion
Are you able to reproduce it? -
Disable track time on milestones option
Remus Avram replied to Remus Avram's topic in General discussion
Thanks Mattias for your suggestion. We will try that as a workaround. It would be great in the feature to be able to enable / disable time tracking per entity. -
time tracking: set defult start time when enter 9h
Remus Avram replied to Remus Avram's topic in General discussion
Yes. -
Hi, when I enter 9h in the time tracking it starts tracking the time from 00:00am. Is it possible to set a default start time when I enter Xh format? Ex defult start tracking time from: 10:00am
-
Hi, did anybody so far create an action which creates a dependency graph of the connected assets? We started tracking every version in Ftrack and link the versions between them. Sometimes we can reach more than 10 layers. It's nice that we can view the links in Ftrack, but adding them in a graph would look nicer.
-
Hi, is it possible to disable the possibility of tracking time on milestones? Artists do this mistake and track time on milestones.
-
Limiting a Custom Attribute to Specific Asset Types
Remus Avram replied to Robinson's topic in General discussion
Hi @Mattias Lagergren thank you! Is there any workaround which you would suggest in the mean while?- 6 replies
-
- versions
- attributes
-
(and 1 more)
Tagged with:
-
Limiting a Custom Attribute to Specific Asset Types
Remus Avram replied to Robinson's topic in General discussion
At the moment I don't think it's possible. We would like to be able to have custom attributes per asset type also. Another example is that we have the camera published in Ftrack and some specific custom attributes like `shutter_open` and `shutter_closed`. These custom attributes should not be visible on a different asset type. For each asset type there are specific custom attributes.- 6 replies
-
- versions
- attributes
-
(and 1 more)
Tagged with: