File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ This package provides integration with **[PHP-FFMpeg](https://github.com/PHP-FFM
23
23
- [ Transcoding] ( #transcoding )
24
24
- [ Saving Files] ( #saving-files )
25
25
- [ Live] ( #live )
26
+ - [ Metadata] ( #metadata )
26
27
- [ Conversion] ( #conversion )
27
28
- [ Other Advanced Features] ( #other-advanced-features )
28
29
- [ Asynchronous Task Execution] ( #asynchronous-task-execution )
@@ -268,6 +269,17 @@ $hls
268
269
269
270
Please see ** [ FFmpeg Protocols Documentation] ( https://ffmpeg.org/ffmpeg-protocols.html ) ** for more information.
270
271
272
+ ### Metadata
273
+ You can get information from multimedia streams and the video file using the following code.
274
+ ``` php
275
+ $hls = $hls->save();
276
+ $metadata = $hls->metadata()->export();
277
+
278
+ print_r($metadata);
279
+ ```
280
+
281
+ Please see ** [ the example] ( https://video.aminyazdanpanah.com/start?r=metadata#metadata ) ** for more information.
282
+
271
283
### Conversion
272
284
You can convert your stream to a file or to another stream protocols. You should pass a manifest of the stream to the ` open ` method:
273
285
You can’t perform that action at this time.
0 commit comments