- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I found the sample codes in Media SDK always complete encode or decode with the highest frame rate (full performance of GPU). I want to specify the frame rate as I need for encode/decode. Is there a sample code can run on a specific frame rate or is there a command can achieve this feature?
Thanks,
Xiaole
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Media SDK allows you to set a playback frame rate, but as you noted this is much different than limiting encode output to a specific rate for live streaming.
This is left to the application. Basically it just needs to watch for the elapsed time between synchronizations after encode at the end of the pipeline. This will give the amount of time the encode actually took, which is usually far less than the 1/24th or 1/30th of a second interval needed by the reciever. One approach could be to have multiple transcode threads where each one sleeps for the rest of the timeslice.
For example, to maintain 30 frames per second each new frame should be delivered in 33 milliseconds. If after encode 32.5 milliseconds are left the thread can sleep for this amount of time before sending the output of the next encode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jeffrey,
Thank you for your feedback. So the frame rate question is answered. But currently we found we couldn't use the HEVC encoder, I attached a picture for the command we used, please check. We case this issue may relate to DLL setting, do you agree? But we aren't sure how to correct the setting, would please provide you suggestions? Thanks a lot.
Best Regards,
Xiaole
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I can't see all of the command line options in your screenshot, but I was able to reproduce the -9 error by including the -hw parameter.
This is how I ran successfully:
1. Install the Intel® Media SDK HEVC Software Pack for Windows downloaded from the media solutions portal
2. Copied C:\Program Files\Intel\Media SDK 2014 HEVC Software Pack Evaluation to my desktop
3. cd to samples/sample_encode/x64
4. sample_encode.exe h265 -hevc_encoder_plugin 1 -i c:/Videos/test.yuv -o testout.265 -w 352 -h 288
Regards, Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jeffrey,
Thanks a lot, this case is solved.
Best Regards,
Xiaole
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page