/web_subtitles#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/web_subtitles Quick Facts

Category

Speech and language processing

Message type

pal_web_msgs/Subtitles

Direction

➡️ you normally subscribe to this topic.

Quick snippets#

Check the publication rate#
$ rostopic hz /web_subtitles
Display the data published on the topic#
$ rostopic echo /web_subtitles

How to use in your code#

Subscribe to the topic using Python#
 1import rospy
 2from pal_web_msgs.msg import Subtitles
 3
 4def on_data(msg):
 5    print(msg)
 6
 7if __name__ == "__main__":
 8
 9    rospy.init_node("subscriber")
10    rospy.Subscriber("/web_subtitles", Subtitles, on_data)
11    rospy.spin()