How to process all videos in folder by using deepstream?

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU)
• DeepStream Version
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, bugs)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)

I want to process all videos in folder , I can get all the file names in the folder ,how to start the pipeline in deepstream? any samples? thanks

You can use multifilesrc.

First rename your videos such as video_xxxx.mp4, Then use multifilesrc location=video_%d.mp4 as source plugin.

From the following command you can get more information.

gst-inspect-1.0 multifilesrc

deepstream-image-decode-test is a sample to show how infer images,

Thanks.