I am running Deepstream 6.0 App with python Bindings on Jetson Nano 4gb with Jetpack 4.6, the app is able to run the script available here, How to safely stop/quit the app on terminal, CTRL+Z stops the process without cleaning the deepstream pipeline , CTRL+C is not working, is there any alternate solution to it?
I tried creating a keyboard interuptt with signal packages, it doesn't help.
import argparse
import sys
import signal
import os
import cv2
import Jetson.GPIO as GPIO # Import the GPIO library
# ... (rest of your code) ...
def stop_and_cleanup(pipeline):
print("Stopping and cleaning up...")
pipeline.set_state(Gst.State.NULL)
loop.quit() # Quit the GMainLoop
GPIO.cleanup() # Cleanup GPIO pins
# ... (rest of your code) ...
def gpio_callback(channel):
if GPIO.input(channel) == GPIO.LOW:
stop_and_cleanup(pipeline) # Call the stop_and_cleanup function when pin is grounded
# ... (rest of your code) ...
i have used a interuppt signal from gpio, signal is recieved within the script, but it doesnt halt the pipeline