Am 30.10.25 um 14:06 schrieb Paul B Mahol:
On Thu, Oct 30, 2025 at 1:01 PM Richard Bartczak via ffmpeg-user <[email protected]> wrote:Am 30.10.25 um 13:35 schrieb Richard Bartczak via ffmpeg-user: > Hello, > > The followiing output of : > > ffprobe -loglevel error -select_streams v:0 -show_entries > packet=pts_time,flags -of csv=print_section=0 "21 Bridges.ts" > > 0.044000,K__, > 0.124000,___, > 0.084000,___, > 0.064000,___, > 0.104000,___, > 0.204000,___, > 0.164000,___, > 0.144000,___, > 0.184000,___, > 0.284000,___, > 0.244000,___, > 0.224000,___, > 0.264000,___, > 0.364000,___, > 0.324000,___, > > ... > > Is it possible to get a timestamp format like : hh:mm:ss:ms ? > > Also I search for the description of all possible flags like "K". > > Regards > > Richard > > _______________________________________________ > ffmpeg-user mailing list -- [email protected] > To unsubscribe send an email to [email protected] I am soory, I have found it "-sex..." ffprobe -loglevel error -select_streams v:0 -show_entries packet=pts_time,flags -sexagesimal -of csv=print_section=0 "21 Bridges.ts" 0:00:00.044000,K__, 0:00:00.124000,___, 0:00:00.084000,___, 0:00:00.064000,___, 0:00:00.104000,___, 0:00:00.204000,___, 0:00:00.164000,___, 0:00:00.144000,___, 0:00:00.184000,___, 0:00:00.284000,___, 0:00:00.244000,___, 0:00:00.224000,___, 0:00:00.264000,___, 0:00:00.364000,___, 0:00:00.324000,___, Now the description of the flags still open. This output here does not look like correct timestamp format.pts/presentation timestamps need stream timebase which is rational integer number, to be used within conversions intohours/minutes/seconds.. format. Regards Richard _______________________________________________ ffmpeg-user mailing list -- [email protected] To unsubscribe send an email to [email protected]
It is from https://ffmpeg.org/ffprobe-all.html 3.4 Main options -sexagesimal Use sexagesimal format HH:MM:SS.MICROSECONDS for time values. 0:10:04.684000,K__, 0:10:04.764000,___, 0:10:04.724000,___, 0:10:04.704000,___, 0:10:04.744000,___, 0:10:04.844000,___, 0:10:04.804000,___, 0:10:04.784000,___, 0:10:04.824000,___, the same without "sexagesimal" : 604.684000,K__, 604.764000,___, 604.724000,___, 604.704000,___, 604.744000,___, 604.844000,___, 604.804000,___, 604.784000,___, 604.824000,___, I see no difference, what is wrong and what is the right parameter ? Regards Richard _______________________________________________ ffmpeg-user mailing list -- [email protected] To unsubscribe send an email to [email protected]
