echo "file video1.mp4" >> filelist.txt
echo "file video2.mp4" >> filelist.txt
ffmpeg -f concat -i filelist.txt -c copy timelapse.mp4
ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v:0] [1:v:0] concat=n=2:v=1 [v]" -map "[v]" output.mp4
function htmlEmpretienda(valores) { | |
// Verificar si hay datos a partir de la descripción | |
if (!valores[0][0]) { | |
return 'El rango debe contener datos a partir de la descripción y exactamente 17 celdas.'; | |
} | |
// Verificar si hay exactamente 17 celdas | |
if (valores[0].length !== 17) { | |
return 'El rango debe contener exactamente 17 celdas.'; | |
} |
import hashlib | |
import datetime | |
import sys | |
import jwt | |
import requests | |
from typing import Any, Mapping, Optional, Sequence | |
# Grab from jira integration config, I think it's usually `<sentry_host>.jira` | |
JIRA_KEY = "sentry.example.com.jira" |
echo "file video1.mp4" >> filelist.txt
echo "file video2.mp4" >> filelist.txt
ffmpeg -f concat -i filelist.txt -c copy timelapse.mp4
ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v:0] [1:v:0] concat=n=2:v=1 [v]" -map "[v]" output.mp4
#!/bin/bash | |
FLICKR_API_KEY="..." | |
GOOGLE_MAPS_KEY="..." | |
CURL="curl --silent" | |
BASE_URL="https://api.flickr.com/services/rest/?api_key=${FLICKR_API_KEY}&format=json&nojsoncallback=1" | |
PAGE=1 | |
TOTAL_PAGES=$(${CURL} "${BASE_URL}&method=flickr.people.getPhotos&user_id=85777547@N00&page=${PAGE}&per_page=${PER_PAGE}" | jq -r '.photos.pages') | |
PER_PAGE=100 |
See the open_rounds.txt
file for how I mapped out the different rounds into something that sort of makes sense. The first_two_rounds.json
is just an attempt to convert that format into JSON.
; Negtive processing script based on: | |
; https://code.google.com/p/mcclanahoochie/source/browse/gimp_scripts/auto-wb-lce.scm | |
; | |
; It applies: | |
; - Invert | |
; - Auto White Balance | |
; - Local Contrast Enhancement | |
; effects to an image. | |
; | |
; Requires Fx-Foundry (gimp-plugin-registry) |
#! /bin/sh - | |
# | |
# Install OpenVPN connections for all available | |
# regions to NetworkManager | |
# | |
# Requirements: | |
# should be run as root | |
# python and openvpn (will be installed if not present) | |
# | |
# Usage: |