Skip to content
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
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lg_activity/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ include_directories(
)

catkin_install_python(PROGRAMS
scripts/write_scene_timestamps
scripts/write_scene_timestamps.py
scripts/tracker
scripts/tracker.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
Expand Down
1 change: 1 addition & 0 deletions lg_activity/scripts/write_scene_timestamps
43 changes: 43 additions & 0 deletions lg_activity/scripts/write_scene_timestamps.py
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'
Copy link
Contributor

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.

Copy link
Contributor Author

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

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()