Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread Cameron Simpson
On 10Apr2023 13:10, Chris Green wrote: command: ffprobe -v warning -i "input.mp4" -show_streams -of json python: Popen(command, stderr=STDOUT, stdout=PIPE, encoding='utf8') json: json.loads(''.join(p.stdout.readlines())) It's easy to find a version of ffmpeg/ffprobe for every platform. Thank

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread Chris Green
jak wrote: > Chris Green ha scritto: > > jak wrote: > >> rbowman ha scritto: > >>> On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: > >>> > I'm looking for a Python (3) library to access (read only at present) > the metadata in MP4 video files, in particular I want to get at dates

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread rbowman
On Sun, 9 Apr 2023 20:19:37 +0100, Chris Green wrote: > That's why I hadn't thought it would help me as I'm after getting > metadata from an MP4 video file but I guess the metadata format may be > the same regardless of whether it's video or audio. If yuo chase back through the various ISOs you

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread jak
rbowman ha scritto: On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: I'm looking for a Python (3) library to access (read only at present) the metadata in MP4 video files, in particular I want to get at dates and times. What's available to do this? Ideally something available in the

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread jak
Chris Green ha scritto: jak wrote: rbowman ha scritto: On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: I'm looking for a Python (3) library to access (read only at present) the metadata in MP4 video files, in particular I want to get at dates and times. What's available to do this?

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread Chris Green
rbowman wrote: > On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: > > > I'm looking for a Python (3) library to access (read only at present) > > the metadata in MP4 video files, in particular I want to get at dates > > and times. > > > > What's available to do this? Ideally something

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread Chris Green
jak wrote: > rbowman ha scritto: > > On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: > > > >> I'm looking for a Python (3) library to access (read only at present) > >> the metadata in MP4 video files, in particular I want to get at dates > >> and times. > >> > >> What's available to do

Looking for package/library to extract MP4 metadata

2023-04-10 Thread Chris Green
I'm looking for a Python (3) library to access (read only at present) the metadata in MP4 video files, in particular I want to get at dates and times. What's available to do this? Ideally something available in the Ubuntu repositories but I can install with PIP if necessary. -- Chris Green ยท

Re: Looking for package/library to extract MP4 metadata

2023-04-10 Thread rbowman
On Sun, 9 Apr 2023 09:40:51 +0100, Chris Green wrote: > I'm looking for a Python (3) library to access (read only at present) > the metadata in MP4 video files, in particular I want to get at dates > and times. > > What's available to do this? Ideally something available in the Ubuntu >