MCPcopy Create free account
hub / github.com/ml-explore/mlx-data / LoadVideo

Class LoadVideo

mlx/data/op/LoadVideo.h:11–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9namespace op {
10
11class LoadVideo : public KeyTransformOp {
12 public:
13 LoadVideo(
14 const std::string& ikey,
15 const std::string& prefix = "",
16 bool info = false,
17 bool from_memory = false,
18 const std::string& okey = "");
19
20 virtual std::shared_ptr<Array> apply_key(
21 const std::shared_ptr<const Array>& src) const override;
22
23 private:
24 std::string prefix_;
25 bool info_;
26 bool from_memory_;
27};
28
29} // namespace op
30} // namespace data

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected