-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lg_activity add new node to write the scene timestamps #471
Open
constantegonzalez
wants to merge
1
commit into
master
Choose a base branch
from
scene_timestamps
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+46
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
write_scene_timestamps.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import time | ||
import json | ||
import rospy | ||
from interactivespaces_msgs.msg import GenericMessage | ||
|
||
def save_scene_played_time(data): | ||
"""Callback for /director/scene listener, updates the played time for the scene.""" | ||
#input_file_path = '/media/videos/scene_times.json' | ||
json_file_path = '/home/lg/scene_times.json' | ||
if os.path.exists(json_file_path): | ||
with open(json_file_path, 'r') as file: | ||
minshallj marked this conversation as resolved.
Show resolved
Hide resolved
|
||
scene_times = json.load(file) | ||
else: | ||
scene_times = [] | ||
try: | ||
message_dict = json.loads(data.message) | ||
except: | ||
print("failed to load message") | ||
return | ||
|
||
slug = None | ||
if message_dict: | ||
slug = message_dict.get('slug', None) | ||
else: | ||
print(data) | ||
return | ||
|
||
if slug: | ||
timestamp = time.time() | ||
scene_times += [[timestamp, slug]] | ||
|
||
with open(json_file_path, 'w') as file: | ||
json.dump(scene_times, file, indent=4) | ||
|
||
|
||
if __name__ == "__main__": | ||
rospy.init_node('lg_active_scene') | ||
rospy.Subscriber('/director/scene', GenericMessage, save_scene_played_time) | ||
rospy.spin() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this path could be a ros_param and might want to be in the /media directory like you have it above so it survives a reboot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the /media path is not writable on the docker so the video_manager.py reads this file in the docker and updates the scene_times.json file in the /media folder for now