This file contains hidden or 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
- task: CreateWorkItem@1 | |
condition: not(succeeded()) | |
inputs: | |
workItemType: Issue | |
title: 'Created by build $(Build.DefinitionName)-$(Build.BuildNumber)' | |
assignedTo: '$(Build.RequestedFor) <$(Build.RequestedForEmail)>' | |
associate: true |
- Beyond Liveview: Real Time Features With Liveview - Sophie DeBenedetto
- Keynote: Adoption - Brian Cardarella
- It’s An Evolution: Recreating Life With Elixir Processes - Johnny Winn
- Keynote: All Aboard The Stateful Train - Eric Oestrich
- Rebuilding Espec: Foundations In Metaprogramming, - Bruce Park
- A Dwarf Fortress Clone In Elixir: A Story Of Doing It Wrong - Aldric Giacomoni
- Playing With Elixir - Greg Vaughn
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:
This file contains hidden or 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
ffmpeg -threads 0 ^ | |
-i input.mp4 ^ | |
-r 24 -g 48 -keyint_min 48 -sc_threshold 0 -c:v libx264 ^ | |
-s:v:0 640x360 -b:v:0 1200k -maxrate:v:0 1320k -bufsize:v:0 1200k ^ | |
-s:v:1 960x540 -b:v:1 2400k -maxrate:v:1 2640k -bufsize:v:1 2400k ^ | |
-s:v:2 1280x720 -b:v:2 3100k -maxrate:v:2 3410k -bufsize:v:2 3100k ^ | |
-s:v:3 1920x1080 -b:v:3 5200k -maxrate:v:3 5720k -bufsize:v:3 5200k ^ | |
-b:a 128k -ar 44100 -ac 2 ^ | |
-map 0:v -map 0:v -map 0:v -map 0:v -map 0:a ^ | |
-f hls -var_stream_map "v:0,agroup:audio v:1,agroup:audio v:2,agroup:audio v:3,agroup:audio a:0,agroup:audio" ^ |
This file contains hidden or 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
package com.microsoft.cse; | |
import java.io.*; | |
import java.nio.file.*; | |
public class Main { | |
private static class Pump implements Runnable { | |
private final InputStream is; | |
private final OutputStream os; |
Short-link: https://tinyurl.com/eco-ipad-paper
- 2014: Ökobilanz-Update: Recyclingpapier toppt Tablets: Seine Ökobilanzergebnisse zeigen für das papierlose Studium mit einem Tablet ähnlich hohe Umweltauswirkungen wie bei einem Studium mit Skripten gedruckt auf Frischfaserpapier
- Tablet versus Druckmaterialien im Unterricht - Eine vergleichende Ökobilanz
- Was ist umweltfreundlicher – Papier oder Tablet?
- Is digital really greener than paper?