Skip to content

Commit

Permalink
Change copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Speykious committed Nov 22, 2022
1 parent 0806c65 commit 68a8613
Show file tree
Hide file tree
Showing 45 changed files with 45 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ indent_size = 2

[*.cs]
indent_size = 4
file_header_template = Copyright (c) The Vignette Authors\nThis file is part of SeeShark.\nSeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.
file_header_template = Copyright (c) Speykious\nThis file is part of SeeShark.\nSeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

# Require File Header
dotnet_diagnostic.IDE0073.severity = error
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2021, The Vignette Authors
Copyright (c) 2022, Speykious
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
7 changes: 1 addition & 6 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

> Simple C# camera and display library.
[![Discord](https://img.shields.io/discord/871618277258960896?color=7289DA&label=%20&logo=discord&logoColor=white)](https://go.vignetteapp.org/discord) ![NuGet](https://img.shields.io/nuget/v/SeeShark)

When you SeeShark, you C#!

SeeShark is a simple cross-platform .NET library for handling camera and screen display inputs on Linux, Windows and MacOS.
Expand All @@ -24,7 +22,7 @@ Features include:
- Access to raw pixel data.

Features **don't** include:
- Saving a frame as an image (here's a [wiki page on how to do it](https://github.com/vignetteapp/SeeShark/wiki/Saving-images) using ImageSharp).
- Saving a frame as an image (here's a [wiki page on how to do it](https://github.com/Speykious/SeeShark/wiki/Saving-images) using ImageSharp).
- Recording a video stream to a video file.
- Managing audio devices.

Expand Down Expand Up @@ -94,9 +92,6 @@ You can request a feature or fix a bug by reporting an issue.

If you feel like fixing a bug or implementing a feature, you can fork this repository and make a pull request at any time!

You can also join our discord server where we talk about our different projects.
We have a dedicated **#tracking** channel where we talk about SeeShark, MediaPipe.NET and other related repositories.

## License

This library is licensed under the BSD 3-Clause License.
Expand Down
2 changes: 1 addition & 1 deletion SeeShark.Example.Ascii/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark.Example.Stats/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Decode/DecodeStatus.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Decode/HardwareAccelDevice.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Decode/HardwareAccelStreamDecoder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Decode/VideoStreamDecoder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/Camera.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/CameraInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/CameraManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/DeviceInputFormat.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/Display.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/DisplayInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/DisplayManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/VideoDevice.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/VideoDeviceInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Device/VideoDeviceManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Disposable.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FFmpeg/FFmpegHelper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FFmpeg/FFmpegLogLevel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FFmpeg/FFmpegManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FFmpeg/LibraryFlags.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Frame.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FrameConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/FrameEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/FileOpenFlags.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/Ioctl.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/Libc.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/MemoryMappedFlags.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/MemoryMappedProtections.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/RawVideoSettings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/V4l2InputFormat.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/VideoSettings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Libc/Videodev2.struct.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/Windows/User32.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/X11/XLib.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/X11/XRRMonitorInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Interop/X11/XRandr.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/PixelFormat.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Utils/DShowUtils.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Utils/PrivateFFmpeg/PixelFormatTag.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/Utils/V4l2Utils.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down
2 changes: 1 addition & 1 deletion SeeShark/VideoInputOptions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) The Vignette Authors
// Copyright (c) Speykious
// This file is part of SeeShark.
// SeeShark is licensed under the BSD 3-Clause License. See LICENSE for details.

Expand Down

0 comments on commit 68a8613

Please sign in to comment.