Click here to Skip to main content
15,889,116 members
Home / Discussions / C#
   

C#

 
GeneralRe: Grid View Column Pin
Mahdi_kishislan23-Jul-13 18:49
Mahdi_kishislan23-Jul-13 18:49 
GeneralRe: Grid View Column Pin
Dave Kreskowiak24-Jul-13 3:49
mveDave Kreskowiak24-Jul-13 3:49 
AnswerRe: Grid View Column Pin
phani raavi25-Jul-13 3:25
phani raavi25-Jul-13 3:25 
QuestionFPS convertor Pin
_Q12_23-Jul-13 9:13
_Q12_23-Jul-13 9:13 
AnswerRe: FPS convertor Pin
walterhevedeich23-Jul-13 17:37
professionalwalterhevedeich23-Jul-13 17:37 
GeneralRe: FPS convertor Pin
_Q12_23-Jul-13 18:51
_Q12_23-Jul-13 18:51 
GeneralRe: FPS convertor Pin
walterhevedeich23-Jul-13 20:23
professionalwalterhevedeich23-Jul-13 20:23 
GeneralRe: FPS convertor Pin
harold aptroot24-Jul-13 0:13
harold aptroot24-Jul-13 0:13 
Adding the same offset to all entries does not change the speed of the subtitles, it just shifts them in time.
To change the speed, add a different offset depending on the number of nanoseconds (or some other unit) from the start, or stated differently, multiply the time by something.
For example, to convert 23.978 FPS to 23.976, multiply each time by 23.978 / 23.976, or perhaps slightly more accurately (due to rounding), multiply the time by 23.978, then divide it by 23.976. You can factor out the fact that those are not integers by multiplying by 23978 (make sure there is no overflow) and then dividing by 23976, but if you use integer division, the division always rounds downwards and you get no chance to round To Nearest (so you'd get when using doubles and then rounding).
If you're now thinking "what does multiplying a time even mean", it means taking the number of nanoseconds (or some other unit) that the time represents (it's just an offset from the beginning of course), do the math on that number, and convert it back to a time-thing again (with rounded as necessary).

modified 24-Jul-13 6:23am.

GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 6:27
_Q12_25-Jul-13 6:27 
GeneralRe: FPS convertor Pin
harold aptroot25-Jul-13 7:04
harold aptroot25-Jul-13 7:04 
GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 7:21
_Q12_25-Jul-13 7:21 
QuestionHow to authorize user by form authentication in mvc 4 Pin
nitin_ion23-Jul-13 2:35
nitin_ion23-Jul-13 2:35 
AnswerRe: How to authorize user by form authentication in mvc 4 Pin
Keith Barrow23-Jul-13 6:29
professionalKeith Barrow23-Jul-13 6:29 
QuestionGet string in a function using Socket server Pin
CodingHell22-Jul-13 21:02
CodingHell22-Jul-13 21:02 
AnswerRe: Get string in a function using Socket server Pin
Richard MacCutchan22-Jul-13 21:09
mveRichard MacCutchan22-Jul-13 21:09 
GeneralRe: Get string in a function using Socket server Pin
CodingHell22-Jul-13 21:18
CodingHell22-Jul-13 21:18 
AnswerRe: Get string in a function using Socket server Pin
Richard MacCutchan22-Jul-13 23:39
mveRichard MacCutchan22-Jul-13 23:39 
AnswerRe: Get string in a function using Socket server Pin
lukeer22-Jul-13 23:39
lukeer22-Jul-13 23:39 
QuestionApplication Settings Pin
Midnight Ahri22-Jul-13 18:31
Midnight Ahri22-Jul-13 18:31 
QuestionRe: Application Settings Pin
Kenneth Haugland22-Jul-13 22:48
mvaKenneth Haugland22-Jul-13 22:48 
AnswerRe: Application Settings Pin
Midnight Ahri22-Jul-13 23:40
Midnight Ahri22-Jul-13 23:40 
AnswerRe: Application Settings Pin
lukeer22-Jul-13 23:09
lukeer22-Jul-13 23:09 
AnswerRe: Application Settings Pin
Midnight Ahri22-Jul-13 23:47
Midnight Ahri22-Jul-13 23:47 
GeneralRe: Application Settings Pin
Eddy Vluggen23-Jul-13 0:29
professionalEddy Vluggen23-Jul-13 0:29 
QuestionResponsive UI - WPF with Properties Pin
SynergiAios22-Jul-13 15:09
SynergiAios22-Jul-13 15:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.