Skip to content

Commit

Permalink
docs: add top-level doc strings for mp4ff-encrypt and mp4ff-decrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbee committed Nov 1, 2023
1 parent 381fa68 commit 7fa1e27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmd/mp4ff-decrypt/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// mp4ff-decrypt decrypts a fragmented mp4 file encrypted with Common Encryption scheme cenc or cbcs.
package main

import (
Expand All @@ -14,7 +15,7 @@ import (

var usg = `Usage of %s:
%s decrypts a fragmented mp4 file encrypted using Common Encryption with cenc or cbcs scheme.
%s decrypts a fragmented mp4 file encrypted with Common Encryption scheme cenc or cbcs.
For a media segment, it needs an init segment with encryption information.
`
Expand Down
3 changes: 2 additions & 1 deletion cmd/mp4ff-encrypt/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// mp4ff-encrypt encrypts a fragmented mp4 file using Common Encryption using cenc or cbcs scheme.
package main

import (
Expand All @@ -15,7 +16,7 @@ import (

var usg = `Usage of %s:
%s encrypts a fragmented mp4 file encrypted using Common Encryption with cenc or cbcs scheme.
%s encrypts a fragmented mp4 file using Common Encryption using cenc or cbcs scheme.
For a media segment, it needs an init segment with encryption information.
`

Expand Down

0 comments on commit 7fa1e27

Please sign in to comment.