-
Notifications
You must be signed in to change notification settings - Fork 0
/
Filmwandler_Format_flv.txt
62 lines (50 loc) · 2.35 KB
/
Filmwandler_Format_flv.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#==============================================================================#
#
# FLV -> Flash Video von Adobe
#
# https://trac.ffmpeg.org/wiki/SupportedMediaTypesInFormats
#
#==============================================================================#
#VERSION="v2018083100"
#VERSION="v2020072700"
#VERSION="v2022120600" # Flash kann leider nur eine einzige Audio-Spur
VERSION="v2022121100" # die Variable ENDUNG darf hier nicht drin stehen
#. ${AVERZ}/Filmwandler_-_in-bit-per-pixel.txt
#==============================================================================#
#
# https://trac.ffmpeg.org/wiki/Encode/MP3
#
# Flash kann leider nur eine einzige Audio-Spur:
# at most one audio stream is supported in flv
#
#==============================================================================#
# Format
FORMAT="flv"
#==============================================================================#
# Audio
# theoretische Unterstützung: MP3, AAC
. $(dirname ${0})/Filmwandler_Codec_Audio_mp3.txt
#. $(dirname ${0})/Filmwandler_Codec_Audio_aac.txt # -> HTML5, HLS
# Video
# theoretische Unterstützung: FLV
if [ "${VIDEO_NICHT_UEBERTRAGEN}" != "0" ] ; then
. $(dirname ${0})/Filmwandler_Codec_Video_flv.txt
#------------------------------------------------------------------------------#
### Flash Video ignoriert im Normalfall das DAR
HOEHE="${VERGLEICH_BREIT}"
BREITE="${VERGLEICH_HOCH}"
fi
#==============================================================================#
FORMAT_BESCHREIBUNG="
********************************************************************************
* Name: Flash Video *
* ENDUNG: .flv *
* Video-Kodierung: Sorenson Spark (MPEG-4 Part 2 / ASP) *
* Audio-Kodierung: MP3 *
* Beschreibung: *
* - ab Adobe Flash Player Version 6 abspielbar *
* - Flash Video Version 1 *
* - FourCC: FLV1 *
* - Flash kann leider nur eine einzige Audio-Spur *
********************************************************************************
"