Skip to content

pyEncode is a tool that adds a web frontend to ffmpeg.

License

Notifications You must be signed in to change notification settings

dhardtke/pyEncode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyEncode

Build Status

pyEncode is a wrapper for the audio and video processor ffmpeg (https://ffmpeg.org/).

Warning: PyEncode is still in a very early stage and therefore only basic features are implemented!

Requirements

pyEncode has been written to run with Python 3.5.x and above.

Installation

Run pip install -r requirements.txt in pyEncode's root directory to install all necessary third-party requirements.

Configuration

In order to use pyEncode it is recommended that you create your own config file inside the data directory.

Create a file called config.ini inside data with the following content:

[general]
csrf_session_key = secret
secret_key = secret
parallel_processes = 1

[filemanager]
show_resolution = False

[encoding]
parameters = -acodec aac -strict experimental -s 1280x720 -aspect 1280:720 -preset slow -crf 24 -f matroska -vcodec libx265
delete_old_file = False
rename_enabled = True
rename_search = (?P<head>.+)(?P<resolution>1080|720|2160)(?:p|P)\.(?P<tail>.+)\.(?P<extension>\w{3})
rename_replace = \g<head>720p.\g<tail>-pyencode.mkv

We advise you to change the csrf_session_key and secret_key. If you wish, you can change the parameters that will be passed to ffmpeg by using the parameters key inside the config file. Check out this site for info about all available options: https://ffmpeg.org/ffmpeg.html

After the first start pyEncode creates an initial admin user with the username admin and password admin.

Be sure to change these credentials after the first login!

Running pyEncode

You can run pyEncode using its run.py script:

nas@nas:/scripts/pyEncode$ ./run.py --help
usage: run.py [-h] [--debug] [--daemon] [--stop] [--restart] [--port PORT]
              [--host HOST]

optional arguments:
  -h, --help   show this help message and exit
  --debug      enable debug mode (default: False)

daemon:
  --daemon     run in daemon mode (default: False)
  --stop       stop if running in daemon mode (default: False)
  --restart    restart daemon (default: False)

net:
  --port PORT  port at which the web frontend is listening (default: 7000)
  --host HOST  host IP under which the web front end is listening (default:
               127.0.0.1)
nas@nas:/scripts/pyEncode$

Deployment

nginx

Use this config for your vhost to configure nginx as WebSocket Reverse Proxy:

server {
    # change to port 80 for http instead of https
    listen 443;
    server_name pyencode.example.org;
    access_log /var/log/nginx/example.log;
    
    # SSL configuration
    ssl on;
    ssl_dhparam /etc/ssl/certs/dhparam.pem;
    ssl_certificate /etc/letsencrypt/live/pyencode.example.org/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/pyencode.example.org/privkey.pem;

    location / {
        proxy_pass http://127.0.0.1:5000;
        proxy_redirect off;

        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    location /socket.io {
        proxy_pass http://127.0.0.1:5000/socket.io;
        proxy_redirect off;
        proxy_buffering off;

        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }
}

Apache

Coming Soon!

systemd

You can use this unit configuration file: Save it to /lib/systemd/system/pyencode.service for instance:

[Unit]
Description=pyEncode
After=network.target

[Service]
Type=oneshot
ExecStart=/usr/bin/python3 /opt/pyEncode/run.py --daemon
ExecStop=/usr/bin/python3 /opt/pyEncode/run.py --stop
RemainAfterExit=yes
User=nas
Group=nas

[Install]
WantedBy=multi-user.target

You might need to adjust the paths.

If you want pyEncode to run automatically when starting your system you need to run systemctl enable pyencode.

Running Tests

Run python run_tests.py in the root folder where the app subdirectory resides.

About

pyEncode is a tool that adds a web frontend to ffmpeg.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published