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 to Icecast2 Streaming Samples | |
==================================== | |
Examples usage of various codecs with FFMpeg. | |
## Samples | |
- flac.sh : An Icecast Source Client | |
- for Windows (Cygwin is required) | |
- and macOS (`brew install ffmpeg`) | |
- another_examples.sh : Samples | |
- FFMpeg can push to Icecast2 in various formats: Opus/Vorbis/AAC/MP3 |
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
#!/bin/bash | |
# | |
# /etc/init.d/subversion | |
# | |
# Starts the Subversion Daemon | |
# | |
# chkconfig: 2345 90 10 | |
# description: Subversion Daemon | |
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
public class Test { | |
public static void main(String[] args) { | |
A a = new A(5); | |
System.out.println(a.a); | |
test(a); | |
System.out.println(a.a); | |
} | |
public static void test(A a) { | |
a.a = 3 ; |