Click here to Skip to main content
15,916,215 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi I wonder if someone could point me in the right direction writing a simple SQL procedure where you pass in a FLE_ID, the procedure then returns the following information:

- Clip Name
- UNC Path
- filesize in GB
- In Point
- Out Point
- Framerate
- DAR
- Duration in Timecode value

Thanks in advance
Posted
Comments
Thanks7872 9-Jun-15 6:24am    
select ClipName, UNCPath, filesize, InPoint, OutPoint, Framerate,DAR, Duration from Table_Name where FLE_ID="Your_Value"

Such query should be there in your sp.

1 solution

There are some good examples of the ways you could achieve this on this post from sqlteam.com[^]
 
Share this answer
 
Comments
Geofferz 10-Jun-15 6:33am    
Thanks this site was very helpful
CHill60 10-Jun-15 7:08am    
I use it a lot to be honest

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900