-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# ---------------------------------------------------------------------------------------------------- | ||
# Name: comskip | ||
# Description: Comskip is a console application used for commercial detection in video files. It analyzes MPEG or H.264 files based on configurable parameters and generates output files containing the location of commercials. It supports various formats for video editing, cutting, and playback, but cannot read copy-protected recordings. | ||
# Author: John Andrews | ||
# Revision: 1 | ||
# Icon: fas fa-tv:#DA70D6 | ||
# ---------------------------------------------------------------------------------------------------- | ||
|
||
#!/bin/bash | ||
|
||
# Check if Git is installed | ||
if ! command -v git &>/dev/null; then | ||
echo "Git is not installed. Installing..." | ||
# Update package lists | ||
apt update | ||
|
||
# Install Git | ||
apt install -y git | ||
|
||
echo "Installation complete." | ||
else | ||
echo "Git is already installed." | ||
fi |
Oops, something went wrong.