From 97dd6c691be767544b614c5004efa14430a0cca2 Mon Sep 17 00:00:00 2001 From: Roz K Date: Fri, 3 Oct 2025 18:15:25 +0200 Subject: [PATCH] license notice --- mp4/__init__.py | 7 ++++--- mp4/codec.py | 7 ++++--- mp4/decoder.py | 7 ++++--- mp4/demuxer.py | 7 ++++--- mp4/frame.py | 7 ++++--- mp4/libav.py | 7 ++++--- mp4/packet.py | 7 ++++--- mp4/stream.py | 7 ++++--- pve.py | 7 ++++--- 9 files changed, 36 insertions(+), 27 deletions(-) diff --git a/mp4/__init__.py b/mp4/__init__.py index 78902ba..5b765b7 100644 --- a/mp4/__init__.py +++ b/mp4/__init__.py @@ -7,8 +7,9 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . diff --git a/mp4/codec.py b/mp4/codec.py index d6c8ad6..df4b723 100644 --- a/mp4/codec.py +++ b/mp4/codec.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . class Codec: diff --git a/mp4/decoder.py b/mp4/decoder.py index db41e17..d6c346a 100644 --- a/mp4/decoder.py +++ b/mp4/decoder.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . from . import libav diff --git a/mp4/demuxer.py b/mp4/demuxer.py index 327b723..ffe45d0 100644 --- a/mp4/demuxer.py +++ b/mp4/demuxer.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . from . import libav diff --git a/mp4/frame.py b/mp4/frame.py index 191078a..9870e11 100644 --- a/mp4/frame.py +++ b/mp4/frame.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . from . import libav diff --git a/mp4/libav.py b/mp4/libav.py index 419f019..6d044ea 100644 --- a/mp4/libav.py +++ b/mp4/libav.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . import errno diff --git a/mp4/packet.py b/mp4/packet.py index bc92f17..ca5c5bb 100644 --- a/mp4/packet.py +++ b/mp4/packet.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . from . import libav diff --git a/mp4/stream.py b/mp4/stream.py index 2d284c2..9a12249 100644 --- a/mp4/stream.py +++ b/mp4/stream.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . class Stream: diff --git a/pve.py b/pve.py index fd66ccb..a865468 100644 --- a/pve.py +++ b/pve.py @@ -7,10 +7,11 @@ # GNU General Public License as published by the Free Software Foundation, either version 3 of the License, # or (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# People's Video Editor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with Foobar. +# You should have received a copy of the GNU General Public License along with People's Video Editor. # If not, see . from mp4.demuxer import Demuxer