
Recherche avancée
Autres articles (37)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5845)
-
Merge audio of multiple movies by ffmpeg command
11 février 2019, par S.TI want to merge 3 video files to one. my problem is that i can hear the audio only from 2. one of them is muted.
The command i did will show the 3 movies each one next to each other and should play the audio from the whole 3.
This is my query :
complexCommand = new String[]{"-i", tempPath1, "-i", tempPath2,"-i", tempPath3,"-filter_complex",
"[0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=green[a];" +
"[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];" +
"[2:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=blue[c];" +
"[b][c]hstack=inputs=2,scale=iw/2:-2[bottom];" +
"[a][bottom]vstack=inputs=2,scale=ih*2:-2[video];" +
"[0:a][1:a]amerge=inputs=2[audio];" + // take audio first movie, take audio second movie and merge with 2 inputs
"[audio][2:a]amerge=inputs=2[audio1]",
"-map", // map of the video
"[video]",
"-map", // map of the audio
"[audio1]",
"-ac",
"2", // number of chanels
outputFilePath};The result of this command is that i can hear only movies a and b.
Thanks a lot :)Edit
I also tried this one :
complexCommand = new String[]{"-i", tempPath1, "-i", tempPath2,"-i", tempPath3,"-filter_complex",
"[0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=green[a];" +
"[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];" +
"[2:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=blue[c];" +
"[b][c]hstack=inputs=2,scale=iw/2:-2[bottom];" +
"[a][bottom]vstack=inputs=2,scale=ih*2:-2[video];" +
"[0:a][1:a][2:a]amerge=inputs=3[audio]",
"-map", // map of the video
"[video]",
"-map", // map of the audio
"[audio]",
"-ac",
"2", // number of chanels
outputFilePath};Another Edit
After another investigation, i saw that he is not merging the last movie audio. Also if i have 4 movies, it merges 3 and you can’t hear the last one.
log (too long - this is the last half of it) :
10.417 Started command progress : ffmpeg frame= 102 fps=1.2 q=28.0 size= 344kB time=00:00:04.24 bitrate= 662.5kbits/s dup=1 drop=122 speed=0.0495x
16.670 Started command progress : ffmpeg frame= 103 fps=1.1 q=28.0 size= 361kB time=00:00:04.29 bitrate= 689.2kbits/s dup=1 drop=123 speed=0.0466x
17.329 Started command progress : ffmpeg frame= 104 fps=1.1 q=28.0 size= 366kB time=00:00:04.33 bitrate= 691.2kbits/s dup=1 drop=124 speed=0.0467x
18.067 Started command progress : ffmpeg frame= 105 fps=1.1 q=28.0 size= 368kB time=00:00:04.37 bitrate= 688.3kbits/s dup=1 drop=125 speed=0.0468x
18.658 Started command progress : ffmpeg frame= 106 fps=1.1 q=28.0 size= 371kB time=00:00:04.41 bitrate= 687.5kbits/s dup=1 drop=127 speed=0.0469x
19.275 Started command progress : ffmpeg frame= 107 fps=1.1 q=28.0 size= 384kB time=00:00:04.46 bitrate= 705.0kbits/s dup=1 drop=128 speed=0.0471x
20.951 Started command progress : ffmpeg frame= 108 fps=1.1 q=28.0 size= 388kB time=00:00:04.50 bitrate= 706.2kbits/s dup=1 drop=129 speed=0.0467x
21.619 Started command progress : ffmpeg frame= 109 fps=1.1 q=28.0 size= 390kB time=00:00:04.52 bitrate= 706.2kbits/s dup=1 drop=130 speed=0.0466x
22.170 Started command progress : ffmpeg frame= 110 fps=1.1 q=28.0 size= 393kB time=00:00:04.56 bitrate= 704.5kbits/s dup=1 drop=132 speed=0.0468x
25.697 Started command progress : ffmpeg frame= 111 fps=1.1 q=28.0 size= 408kB time=00:00:04.63 bitrate= 720.8kbits/s dup=1 drop=133 speed=0.0458x
30.467 Started command progress : ffmpeg frame= 112 fps=1.1 q=28.0 size= 413kB time=00:00:04.67 bitrate= 723.8kbits/s dup=1 drop=134 speed=0.0441x
31.884 Started command progress : ffmpeg frame= 113 fps=1.1 q=28.0 size= 415kB time=00:00:04.69 bitrate= 723.9kbits/s dup=1 drop=135 speed=0.0437x
32.360 Started command progress : ffmpeg frame= 113 fps=1.0 q=28.0 size= 415kB time=00:00:04.73 bitrate= 717.4kbits/s dup=1 drop=136 speed=0.0439x
37.274 Started command progress : ffmpeg frame= 115 fps=1.0 q=28.0 size= 435kB time=00:00:04.80 bitrate= 741.3kbits/s dup=1 drop=138 speed=0.0426x
38.060 Started command progress : ffmpeg frame= 116 fps=1.0 q=28.0 size= 439kB time=00:00:04.82 bitrate= 746.1kbits/s dup=1 drop=139 speed=0.0425x
38.779 Started command progress : ffmpeg frame= 117 fps=1.0 q=28.0 size= 441kB time=00:00:04.86 bitrate= 743.2kbits/s dup=1 drop=140 speed=0.0426x
39.463 Started command progress : ffmpeg frame= 118 fps=1.0 q=28.0 size= 445kB time=00:00:04.90 bitrate= 742.3kbits/s dup=1 drop=142 speed=0.0427x
40.074 Started command progress : ffmpeg frame= 119 fps=1.0 q=28.0 size= 458kB time=00:00:04.97 bitrate= 753.8kbits/s dup=1 drop=143 speed=0.043x
42.906 Started command progress : ffmpeg frame= 120 fps=1.0 q=28.0 size= 462kB time=00:00:04.99 bitrate= 758.1kbits/s dup=1 drop=144 speed=0.0422x
43.884 Started command progress : ffmpeg frame= 121 fps=1.0 q=28.0 size= 464kB time=00:00:05.03 bitrate= 754.6kbits/s dup=1 drop=145 speed=0.0422x
44.378 Started command progress : ffmpeg frame= 121 fps=1.0 q=28.0 size= 464kB time=00:00:05.07 bitrate= 748.2kbits/s dup=1 drop=146 speed=0.0424x
52.351 Started command progress : ffmpeg frame= 123 fps=1.0 q=28.0 size= 481kB time=00:00:05.12 bitrate= 768.5kbits/s dup=1 drop=148 speed=0.0401x
55.804 Started command progress : ffmpeg frame= 124 fps=0.9 q=28.0 size= 485kB time=00:00:05.16 bitrate= 768.6kbits/s dup=1 drop=149 speed=0.0394x
56.404 Started command progress : ffmpeg frame= 124 fps=0.9 q=28.0 size= 485kB time=00:00:05.18 bitrate= 765.4kbits/s dup=1 drop=149 speed=0.0393x
57.011 Started command progress : ffmpeg frame= 125 fps=0.9 q=28.0 size= 487kB time=00:00:05.20 bitrate= 765.4kbits/s dup=1 drop=150 speed=0.0393x
57.549 Started command progress : ffmpeg frame= 125 fps=0.9 q=28.0 size= 487kB time=00:00:05.25 bitrate= 759.2kbits/s dup=1 drop=151 speed=0.0395x
58.072 Started command progress : ffmpeg frame= 126 fps=0.9 q=28.0 size= 489kB time=00:00:05.27 bitrate= 760.4kbits/s dup=1 drop=152 speed=0.0395x
03.052 Started command progress : ffmpeg frame= 127 fps=0.9 q=28.0 size= 504kB time=00:00:05.29 bitrate= 779.9kbits/s dup=1 drop=153 speed=0.0382x
04.000 Started command progress : ffmpeg frame= 128 fps=0.9 q=28.0 size= 509kB time=00:00:05.33 bitrate= 781.5kbits/s dup=1 drop=154 speed=0.0383x
04.841 Started command progress : ffmpeg frame= 129 fps=0.9 q=28.0 size= 511kB time=00:00:05.35 bitrate= 781.3kbits/s dup=1 drop=155 speed=0.0382x
05.615 Started command progress : ffmpeg frame= 129 fps=0.9 q=28.0 size= 511kB time=00:00:05.39 bitrate= 775.1kbits/s dup=1 drop=156 speed=0.0383x
06.627 Started command progress : ffmpeg frame= 130 fps=0.9 q=28.0 size= 514kB time=00:00:05.42 bitrate= 776.8kbits/s dup=1 drop=157 speed=0.0382x
07.511 Started command progress : ffmpeg frame= 131 fps=0.9 q=28.0 size= 525kB time=00:00:05.46 bitrate= 786.6kbits/s dup=1 drop=158 speed=0.0383x
12.298 Started command progress : ffmpeg frame= 132 fps=0.9 q=28.0 size= 529kB time=00:00:05.48 bitrate= 789.4kbits/s dup=1 drop=159 speed=0.0382x
12.306 Started command progress : ffmpeg frame= 132 fps=0.9 q=28.0 size= 529kB time=00:00:05.48 bitrate= 789.4kbits/s dup=1 drop=159 speed=0.0371x
12.814 Started command progress : ffmpeg frame= 133 fps=0.9 q=28.0 size= 530kB time=00:00:05.48 bitrate= 792.1kbits/s dup=1 drop=160 speed=0.037x
13.584 Started command progress : ffmpeg frame= 134 fps=0.9 q=28.0 size= 533kB time=00:00:05.48 bitrate= 796.2kbits/s dup=1 drop=162 speed=0.0368x
18.744 Started command progress : ffmpeg frame= 135 fps=0.9 q=28.0 size= 547kB time=00:00:05.48 bitrate= 817.1kbits/s dup=1 drop=163 speed=0.0356x
19.776 Started command progress : ffmpeg frame= 136 fps=0.9 q=28.0 size= 551kB time=00:00:05.48 bitrate= 823.3kbits/s dup=1 drop=164 speed=0.0353x
20.554 Started command progress : ffmpeg frame= 137 fps=0.9 q=28.0 size= 553kB time=00:00:05.48 bitrate= 825.9kbits/s dup=1 drop=164 speed=0.0352x
21.113 Started command progress : ffmpeg frame= 138 fps=0.9 q=28.0 size= 556kB time=00:00:05.48 bitrate= 830.1kbits/s dup=1 drop=165 speed=0.035x
23.823 Started command progress : ffmpeg frame= 139 fps=0.9 q=28.0 size= 570kB time=00:00:05.48 bitrate= 850.8kbits/s dup=1 drop=165 speed=0.0344x
24.546 Started command progress : ffmpeg frame= 140 fps=0.9 q=28.0 size= 574kB time=00:00:05.48 bitrate= 857.3kbits/s dup=1 drop=165 speed=0.0343x
25.038 Started command progress : ffmpeg frame= 141 fps=0.9 q=28.0 size= 576kB time=00:00:05.48 bitrate= 860.0kbits/s dup=1 drop=165 speed=0.0342x
29.407 Started command progress : ffmpeg frame= 143 fps=0.9 q=28.0 size= 591kB time=00:00:05.48 bitrate= 882.6kbits/s dup=1 drop=166 speed=0.0333x
32.181 Started command progress : ffmpeg frame= 144 fps=0.9 q=28.0 size= 595kB time=00:00:05.48 bitrate= 888.4kbits/s dup=1 drop=166 speed=0.0327x
32.721 Started command progress : ffmpeg frame= 145 fps=0.9 q=28.0 size= 597kB time=00:00:05.48 bitrate= 891.0kbits/s dup=1 drop=166 speed=0.0326x
37.640 Started command progress : ffmpeg frame= 147 fps=0.8 q=28.0 size= 613kB time=00:00:05.48 bitrate= 915.5kbits/s dup=1 drop=167 speed=0.0317x
38.409 Started command progress : ffmpeg frame= 148 fps=0.9 q=28.0 size= 617kB time=00:00:05.48 bitrate= 922.0kbits/s dup=1 drop=167 speed=0.0315x
38.954 Started command progress : ffmpeg frame= 149 fps=0.9 q=28.0 size= 619kB time=00:00:05.48 bitrate= 924.8kbits/s dup=1 drop=167 speed=0.0314x
43.249 Started command progress : ffmpeg frame= 151 fps=0.8 q=28.0 size= 638kB time=00:00:05.48 bitrate= 952.7kbits/s dup=1 drop=168 speed=0.0307x
44.711 Started command progress : ffmpeg frame= 152 fps=0.8 q=28.0 size= 642kB time=00:00:05.48 bitrate= 959.6kbits/s dup=1 drop=168 speed=0.0304x
45.362 Started command progress : ffmpeg frame= 153 fps=0.8 q=28.0 size= 644kB time=00:00:05.48 bitrate= 962.3kbits/s dup=1 drop=168 speed=0.0303x
47.986 Started command progress : ffmpeg frame= 155 fps=0.8 q=28.0 size= 658kB time=00:00:05.48 bitrate= 983.4kbits/s dup=1 drop=169 speed=0.0299x
51.033 Started command progress : ffmpeg frame= 156 fps=0.8 q=28.0 size= 663kB time=00:00:05.48 bitrate= 989.6kbits/s dup=1 drop=169 speed=0.0294x
51.644 Started command progress : ffmpeg frame= 157 fps=0.8 q=28.0 size= 664kB time=00:00:05.48 bitrate= 992.4kbits/s dup=1 drop=169 speed=0.0293x
52.227 Started command progress : ffmpeg frame= 158 fps=0.8 q=28.0 size= 667kB time=00:00:05.48 bitrate= 996.2kbits/s dup=1 drop=170 speed=0.0292x
55.997 Started command progress : ffmpeg frame= 159 fps=0.8 q=28.0 size= 679kB time=00:00:05.48 bitrate=1014.6kbits/s dup=1 drop=170 speed=0.0286x
57.421 Started command progress : ffmpeg frame= 160 fps=0.8 q=28.0 size= 684kB time=00:00:05.48 bitrate=1022.2kbits/s dup=1 drop=170 speed=0.0284x
57.968 Started command progress : ffmpeg frame= 161 fps=0.8 q=28.0 size= 686kB time=00:00:05.48 bitrate=1025.0kbits/s dup=1 drop=170 speed=0.0284x
02.301 Started command progress : ffmpeg frame= 163 fps=0.8 q=28.0 size= 704kB time=00:00:05.48 bitrate=1051.4kbits/s dup=1 drop=171 speed=0.0277x
02.318 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
03.129 Started command progress : ffmpeg frame= 164 fps=0.8 q=28.0 size= 708kB time=00:00:05.48 bitrate=1058.1kbits/s dup=1 drop=171 speed=0.0276x
03.135 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
03.791 Started command progress : ffmpeg Last message repeated 2 times
03.804 Started command progress : ffmpeg frame= 165 fps=0.8 q=28.0 size= 710kB time=00:00:05.48 bitrate=1060.7kbits/s dup=1 drop=171 speed=0.0275x
03.818 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
10.434 Started command progress : ffmpeg Last message repeated 3 times
10.436 Started command progress : ffmpeg frame= 167 fps=0.8 q=28.0 size= 728kB time=00:00:05.48 bitrate=1087.9kbits/s dup=1 drop=172 speed=0.0266x
11.139 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
11.140 Started command progress : ffmpeg frame= 168 fps=0.8 q=28.0 size= 733kB time=00:00:05.48 bitrate=1094.8kbits/s dup=1 drop=172 speed=0.0265x
11.148 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
11.654 Started command progress : ffmpeg Last message repeated 1 times
11.655 Started command progress : ffmpeg frame= 169 fps=0.8 q=28.0 size= 735kB time=00:00:05.48 bitrate=1097.6kbits/s dup=1 drop=172 speed=0.0265x
11.660 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
13.730 Started command progress : ffmpeg Last message repeated 4 times
13.732 Started command progress : ffmpeg frame= 171 fps=0.8 q=28.0 size= 750kB time=00:00:05.48 bitrate=1119.6kbits/s dup=1 drop=173 speed=0.0262x
14.493 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
14.495 Started command progress : ffmpeg frame= 172 fps=0.8 q=28.0 size= 754kB time=00:00:05.48 bitrate=1125.7kbits/s dup=1 drop=173 speed=0.0261x
14.510 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
15.764 Started command progress : ffmpeg Last message repeated 1 times
15.768 Started command progress : ffmpeg frame= 173 fps=0.8 q=28.0 size= 756kB time=00:00:05.48 bitrate=1128.7kbits/s dup=1 drop=173 speed=0.026x
15.967 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
17.594 Started command progress : ffmpeg Last message repeated 4 times
17.600 Started command progress : ffmpeg frame= 175 fps=0.8 q=28.0 size= 769kB time=00:00:05.48 bitrate=1148.9kbits/s dup=1 drop=174 speed=0.0257x
22.264 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
22.270 Started command progress : ffmpeg frame= 176 fps=0.8 q=28.0 size= 773kB time=00:00:05.48 bitrate=1154.6kbits/s dup=1 drop=174 speed=0.0252x
22.273 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
22.794 Started command progress : ffmpeg Last message repeated 1 times
22.796 Started command progress : ffmpeg frame= 177 fps=0.8 q=28.0 size= 775kB time=00:00:05.48 bitrate=1157.0kbits/s dup=1 drop=174 speed=0.0251x
22.997 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
26.730 Started command progress : ffmpeg Last message repeated 3 times
26.732 Started command progress : ffmpeg frame= 179 fps=0.8 q=28.0 size= 792kB time=00:00:05.48 bitrate=1182.5kbits/s dup=1 drop=175 speed=0.0247x
26.736 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
27.345 Started command progress : ffmpeg Last message repeated 1 times
27.347 Started command progress : ffmpeg frame= 180 fps=0.8 q=28.0 size= 796kB time=00:00:05.48 bitrate=1188.9kbits/s dup=1 drop=175 speed=0.0246x
27.811 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
28.017 Started command progress : ffmpeg Last message repeated 2 times
28.019 Started command progress : ffmpeg frame= 181 fps=0.8 q=28.0 size= 798kB time=00:00:05.48 bitrate=1192.1kbits/s dup=1 drop=175 speed=0.0245x
28.027 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
31.612 Started command progress : ffmpeg Last message repeated 2 times
31.617 Started command progress : ffmpeg frame= 183 fps=0.8 q=28.0 size= 820kB time=00:00:05.48 bitrate=1224.5kbits/s dup=1 drop=176 speed=0.0242x
31.620 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
32.251 Started command progress : ffmpeg Last message repeated 1 times
32.254 Started command progress : ffmpeg frame= 184 fps=0.8 q=28.0 size= 827kB time=00:00:05.48 bitrate=1234.7kbits/s dup=1 drop=176 speed=0.0241x
32.654 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
32.828 Started command progress : ffmpeg Last message repeated 2 times
32.833 Started command progress : ffmpeg frame= 185 fps=0.8 q=28.0 size= 828kB time=00:00:05.48 bitrate=1237.4kbits/s dup=1 drop=176 speed=0.024x
33.093 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
38.362 Started command progress : ffmpeg Last message repeated 2 times
38.363 Started command progress : ffmpeg frame= 187 fps=0.8 q=28.0 size= 833kB time=00:00:05.50 bitrate=1240.0kbits/s dup=1 drop=177 speed=0.0235x
38.370 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
39.216 Started command progress : ffmpeg Last message repeated 1 times
39.217 Started command progress : ffmpeg frame= 188 fps=0.8 q=28.0 size= 833kB time=00:00:05.54 bitrate=1230.7kbits/s dup=1 drop=177 speed=0.0236x
39.744 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
39.747 Started command progress : ffmpeg frame= 189 fps=0.8 q=28.0 size= 833kB time=00:00:05.58 bitrate=1221.5kbits/s dup=1 drop=177 speed=0.0238x
39.748 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
40.354 Started command progress : ffmpeg Last message repeated 4 times
40.355 Started command progress : ffmpeg frame= 191 fps=0.8 q=28.0 size= 833kB time=00:00:05.67 bitrate=1203.6kbits/s dup=1 drop=178 speed=0.0241x
41.031 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
41.037 Started command progress : ffmpeg frame= 192 fps=0.8 q=28.0 size= 833kB time=00:00:05.71 bitrate=1194.8kbits/s dup=1 drop=178 speed=0.0242x
41.046 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
41.557 Started command progress : ffmpeg Last message repeated 1 times
41.561 Started command progress : ffmpeg frame= 193 fps=0.8 q=28.0 size= 833kB time=00:00:05.75 bitrate=1186.1kbits/s dup=1 drop=178 speed=0.0243x
41.744 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
42.421 Started command progress : ffmpeg Last message repeated 4 times
42.423 Started command progress : ffmpeg frame= 195 fps=0.8 q=28.0 size= 833kB time=00:00:05.83 bitrate=1169.2kbits/s dup=1 drop=179 speed=0.0245x
47.015 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
47.017 Started command progress : ffmpeg frame= 196 fps=0.8 q=28.0 size= 833kB time=00:00:05.88 bitrate=1160.9kbits/s dup=1 drop=179 speed=0.0243x
47.019 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
47.517 Started command progress : ffmpeg Last message repeated 2 times
47.524 Started command progress : ffmpeg frame= 197 fps=0.8 q=28.0 size= 833kB time=00:00:05.92 bitrate=1152.7kbits/s dup=1 drop=179 speed=0.0244x
47.524 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
48.946 Started command progress : ffmpeg Last message repeated 2 times
48.959 Started command progress : ffmpeg frame= 199 fps=0.8 q=28.0 size= 833kB time=00:00:06.00 bitrate=1136.7kbits/s dup=1 drop=180 speed=0.0246x
48.961 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
49.797 Started command progress : ffmpeg Last message repeated 1 times
49.798 Started command progress : ffmpeg frame= 200 fps=0.8 q=28.0 size= 833kB time=00:00:06.04 bitrate=1128.9kbits/s dup=1 drop=180 speed=0.0247x
49.803 Started command progress : ffmpeg Error while decoding stream #2:1: Out of memory
50.546 Started command progress : ffmpeg Last message repeated 4 times
50.547 Started command progress : ffmpeg frame= 201 fps=0.8 q=28.0 size= 833kB time=00:00:06.08 bitrate=1121.1kbits/s dup=1 drop=180 speed=0.0248x
53.010 Started command progress : ffmpeg frame= 204 fps=0.8 q=28.0 size= 833kB time=00:00:06.21 bitrate=1098.6kbits/s dup=1 drop=181 speed=0.0251x
53.713 Started command progress : ffmpeg frame= 205 fps=0.8 q=28.0 size= 833kB time=00:00:06.25 bitrate=1091.2kbits/s dup=1 drop=181 speed=0.0252x
53.722 Started command progress : ffmpeg frame= 205 fps=0.8 q=28.0 size= 833kB time=00:00:06.25 bitrate=1091.2kbits/s dup=1 drop=181 speed=0.0251x
50.706 Started command progress : ffmpeg frame= 205 fps=0.7 q=-1.0 Lsize= 965kB time=00:00:08.46 bitrate= 933.2kbits/s dup=1 drop=181 speed=0.0277x
50.720 Started command progress : ffmpeg video:872kB audio:87kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.621844%
50.720 Started command progress : ffmpeg [libx264 @ 0xf35ff400] frame I:1 Avg QP:19.09 size: 40991
50.725 Started command progress : ffmpeg [libx264 @ 0xf35ff400] frame P:51 Avg QP:18.16 size: 10789
50.726 Started command progress : ffmpeg [libx264 @ 0xf35ff400] frame B:153 Avg QP:19.57 size: 1966
50.729 Started command progress : ffmpeg [libx264 @ 0xf35ff400] consecutive B-frames: 0.5% 0.0% 0.0% 99.5%
50.737 Started command progress : ffmpeg [libx264 @ 0xf35ff400] mb I I16..4: 31.5% 61.8% 6.7%
50.742 Started command progress : ffmpeg [libx264 @ 0xf35ff400] mb P I16..4: 2.3% 2.0% 0.1% P16..4: 31.9% 5.7% 2.3% 0.0% 0.0% skip:55.6%
50.750 Started command progress : ffmpeg [libx264 @ 0xf35ff400] mb B I16..4: 0.1% 0.0% 0.0% B16..8: 18.2% 0.3% 0.0% direct: 1.0% skip:80.3% L0:46.2% L1:53.2% BI: 0.6%
50.753 Started command progress : ffmpeg [libx264 @ 0xf35ff400] 8x8 transform intra:49.4% inter:92.4%
50.754 Started command progress : ffmpeg [libx264 @ 0xf35ff400] coded y,uvDC,uvAC intra: 19.1% 26.6% 3.8% inter: 2.5% 7.1% 0.0%
50.756 Started command progress : ffmpeg [libx264 @ 0xf35ff400] i16 v,h,dc,p: 41% 15% 5% 39%
50.764 Started command progress : ffmpeg [libx264 @ 0xf35ff400] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 29% 14% 32% 3% 5% 5% 4% 4% 3%
50.767 Started command progress : ffmpeg [libx264 @ 0xf35ff400] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 35% 20% 25% 2% 6% 4% 4% 2% 1%
50.768 Started command progress : ffmpeg [libx264 @ 0xf35ff400] i8c dc,h,v,p: 56% 20% 20% 4%
50.772 Started command progress : ffmpeg [libx264 @ 0xf35ff400] Weighted P-Frames: Y:0.0% UV:0.0%
50.774 Started command progress : ffmpeg [libx264 @ 0xf35ff400] ref P L0: 54.0% 5.5% 29.8% 10.6%
50.776 Started command progress : ffmpeg [libx264 @ 0xf35ff400] ref B L0: 76.8% 18.5% 4.7%
50.777 Started command progress : ffmpeg [libx264 @ 0xf35ff400] ref B L1: 96.2% 3.8%
50.779 Started command progress : ffmpeg [libx264 @ 0xf35ff400] kb/s:834.67
50.898 Started command progress : ffmpeg [aac @ 0xf35ffc00] Qavg: 1539.341
50.960 SUCCESS with output : ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (GCC)
configuration: --target-os=linux --cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
libavutil 55. 17.103 / 55. 17.103
libavcodec 57. 24.102 / 57. 24.102
libavformat 57. 25.100 / 57. 25.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 31.100 / 6. 31.100
libswscale 4. 0.100 / 4. 0.100
libswresample 2. 0.101 / 2. 0.101
libpostproc 54. 0.100 / 54. 0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Movies/temp1.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf57.25.100
Duration: 00:00:05.55, start: 0.021333, bitrate: 191 kb/s
Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc), 360x360 [SAR 16:9 DAR 16:9], 113 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, mono, fltp, 70 kb/s (default)
Metadata:
handler_name : SoundHandler
Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Movies/temp2.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf57.25.100
Duration: 00:00:06.73, start: 0.021333, bitrate: 170 kb/s
Stream #1:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc), 360x360 [SAR 9:16 DAR 9:16], 90 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #1:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, mono, fltp, 70 kb/s (default)
Metadata:
handler_name : SoundHandler
Input #2, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Movies/temp3.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf57.25.100
Duration: 00:00:08.50, start: 0.021333, bitrate: 177 kb/s
Stream #2:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc), 360x360 [SAR 9:16 DAR 9:16], 97 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #2:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, mono, fltp, 70 kb/s (default)
Metadata:
handler_name : SoundHandler
[Parsed_amerge_7 @ 0xf38a7780] No channel layout for input 1
[Parsed_amerge_7 @ 0xf38a7780] Input channel layouts overlap: output layout will be determined by the number of distinct input channels
[swscaler @ 0xf35f1000] deprecated pixel format used, make sure you did set range correctly
[swscaler @ 0xf35e6000] deprecated pixel format used, make sure you did set range correctly
No pixel format specified, yuvj420p for H.264 encoding chosen.
Use -pix_fmt yuv420p for compatibility with outdated media players.
[libx264 @ 0xf35ff400] using SAR=16/9
[libx264 @ 0xf35ff400] using cpu capabilities: none!
[libx264 @ 0xf3
50.966 Finished command : ffmpeg [Ljava.lang.String;@7c54447 -
FFmpeg mosaic video creation, Why it doesn't work ?
3 mai 2019, par Ege DarçınI am trying to build a mosaic from multiple videos in an android application using FFmpeg, I have found the wiki on how to do it. The link explains the process well but I am getting this error while processing it :
I/Videokit : start run in main.
register_exit
term_init & parse options.
D/Videokit : ERROR OCCURED
The library that I’m using is WritingMinds, which is FFmpeg for Android compiled with x264, libass, fontconfig, freetype, fribidi and lame (Supports Android 4.1+). Basically, you write a string array of code which is passed to FFmpeg and it runs FFmpeg for you.
Clearly, it is a parsing error but I believe that I have put the command in order. I have tested the files, locations and FFmpeg with other commands like trim, mute audio etc and only mosaic doesn’t work. I have tried different options, string manipulations but that didn’t work, Furthermore, I’ve seen OpenGl error if I put a big typo error.
Here is the code on the wiki :-i 1.avi -i 2.avi -i 3.avi -i 4.avi
-filter_complex "
nullsrc=size=640x480 [base];
[0:v] setpts=PTS-STARTPTS, scale=320x240 [upperleft];
[1:v] setpts=PTS-STARTPTS, scale=320x240 [upperright];
[2:v] setpts=PTS-STARTPTS, scale=320x240 [lowerleft];
[3:v] setpts=PTS-STARTPTS, scale=320x240 [lowerright];
[base][upperleft] overlay=shortest=1 [tmp1];
[tmp1][upperright] overlay=shortest=1:x=320 [tmp2];
[tmp2][lowerleft] overlay=shortest=1:y=240 [tmp3];
[tmp3][lowerright] overlay=shortest=1:x=320:y=240
"
-c:v libx264 output.mkvThis is the code which is on the wiki
String[] m =new String[]{"-i",
DestPath1.toString(),
"-i",
DestPath2.toString(),
"-i",
DestPath3.toString(),
"-i",
DestPath4.toString(),
"-filter_complex",
"\"",
"nullsrc=size=640x480 [base];",
"[0:v] setpts=PTS-STARTPTS, scale=320x240 [upperleft];",
"[1:v] setpts=PTS-STARTPTS, scale=320x240 [upperright];",
"[2:v] setpts=PTS-STARTPTS, scale=320x240 [lowerleft];",
"[3:v] setpts=PTS-STARTPTS, scale=320x240 [lowerright];",
"[base][upperleft], overlay=shortest=1", "[tmp1];",
"[tmp1][upperright] overlay=shortest=1:x=320 [tmp2];",
"[tmp2][lowerleft] overlay=shortest=1:y=240 [tmp3];",
"[tmp3][lowerright] overlay=shortest=1:x=320:y=240",
"\"",
" -c:v",
"libx264",
FinalPath.toString()};
execFFmpegBinary(m);This is the string that I send to the FFmpeg.
The expected result would be a video created on the "FinalPath" which is on the external storage. However, I am getting an error message and nothing else. I have a tight deadline so it would be hard for me to switch to another system and learn it, I’m already new to FFmpeg stuff. Any suggestions ?
Update : I’ve implemented error handlers of the library, not just FFmpeg part, and it points reports as (’"nullsrc’ is not a filter) . However, I need to put (") into there to run the code and I use it as (\"), which does not solve the problem. Removing them is not an option because the statement after the filter needs the quotation marks.
Update2 : Here is the current log :
D/FileLog: Started command : ffmpeg [Ljava.lang.String;@7931693
FAILED with output : ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (GCC)
configuration: --target-os=linux --cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
libavutil 55. 17.103 / 55. 17.103
libavcodec 57. 24.102 / 57. 24.102
libavformat 57. 25.100 / 57. 25.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 31.100 / 6. 31.100
libswscale 4. 0.100 / 4. 0.100
libswresample 2. 0.101 / 2. 0.101
libpostproc 54. 0.100 / 54. 0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Pictures/appName/Vid1.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf56.25.101
Duration: 00:00:45.05, start: 0.033333, bitrate: 694 kb/s
Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 460x258 [SAR 1:1 DAR 230:129], 562 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
Metadata:
handler_name : SoundHandler
Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Pictures/appName/Vid2.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: isommp42
creation_time : 2017-01-15 09:57:32
Duration: 00:00:40.82, start: 0.000000, bitrate: 352 kb/s
Stream #1:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p(tv, bt709), 360x360 [SAR 1:1 DAR 1:1], 253 kb/s, 28.90 fps, 29 tbr, 29 tbn, 58 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #1:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 95 kb/s (default)
Metadata:
creation_time : 2017-01-15 09:57:32
handler_name : IsoMedia File Produced by Google, 5-11-2011
Input #2, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Pictures/appName/Vid3.mp4':
Metadata:
major_brand : mp42
minor_version : 1
compatible_brands: mp41mp42isom
creation_time : 2017-12-15 12:10:56
Duration: 00:00:47.26, start: 0.000000, bitrate: 775 kb/s
Stream #2:0(und): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p(tv, smpte170m/smpte170m/bt709), 480x480, 706 kb/s, 26.98 fps, 27 tbr, 600 tbn, 1200 tbc (default)
Metadata:
creation_time : 2017-12-15 12:10:56
handler_name : Core Media Video
Stream #2:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 65 kb/s (default)
Metadata:
creation_time : 2017-12-15 12:10:56
handler_name : Core Media Audio
Input #3, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/Pictures/appName/Vid4.mp4':
Metadata:
major_brand : mp42
minor_version : 19529854
compatible_brands: mp42isom
creation_time : 2017-12-17 10:05:07
Duration: 00:00:14.33, start: 0.000000, bitrate: 803 kb/s
Stream #3:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 96 k
D/FileLog: Finished command : ffmpeg [Ljava.lang.String;@7931693
V/FA: Inactivity, disconnecting from the service -
extract subtitle from video ffmpeg. subs.srt : Invalid argument
3 juillet 2019, par evgeni fotialet filename_ext = file.path.split('/').pop()
let filename = filename_ext.split('.').slice(0, filename_ext.split('.').length-1).join('.')
var result = ffmpeg({
MEMFS: [{name: filename_ext, data: buffer}],
arguments: ["-i", filename_ext, "-map", "0:s:0", "subs.srt"],
// Ignore stdin read requests
stdin: function() {},
});
// Write out.webm to disk.
var out = result.MEMFS[0];
fs.outputFile(pathname + '/' + out.name, Buffer(out.data), 'binary');I get the following
ffmpeg version n3.1.2 Copyright (c) 2000-2016 the FFmpeg developers
built with emcc (Emscripten gcc/clang-like replacement) 1.36.7 ()
configuration: --cc=emcc --enable-cross-compile --target-os=none --arch=x86 --disable-runtime-cpudetect --disable-asm --disable-fast-unaligned --disable-pthreads --disable-w32threads --disable-os2threads --disable-debug --disable-stripping --disable-all --enable-ffmpeg --enable-avcodec --enable-avformat --enable-avutil --enable-swresample --enable-swscale --enable-avfilter --disable-network --disable-d3d11va --disable-dxva2 --disable-vaapi --disable-vda --disable-vdpau --enable-decoder=vp8 --enable-decoder=vp9 --enable-decoder=theora --enable-decoder=mpeg2video --enable-decoder=mpeg4 --enable-decoder=h264 --enable-decoder=hevc --enable-decoder=png --enable-decoder=mjpeg --enable-decoder=vorbis --enable-decoder=opus --enable-decoder=mp3 --enable-decoder=ac3 --enable-decoder=aac --enable-decoder=ass --enable-decoder=ssa --enable-decoder=srt --enable-decoder=webvtt --enable-demuxer=matroska --enable-demuxer=ogg --enable-demuxer=avi --enable-demuxer=mov --enable-demuxer=flv --enable-demuxer=mpegps --enable-demuxer=image2 --enable-demuxer=mp3 --enable-demuxer=concat --enable-protocol=file --enable-filter=aresample --enable-filter=scale --enable-filter=crop --enable-filter=overlay --disable-bzlib --disable-iconv --disable-libxcb --disable-lzma --disable-sdl --disable-securetransport --disable-xlib --disable-zlib --enable-encoder=libvpx_vp8 --enable-encoder=libopus --enable-encoder=mjpeg --enable-muxer=webm --enable-muxer=ogg --enable-muxer=null --enable-muxer=image2 --enable-filter=subtitles --enable-libass --enable-libopus --enable-libvpx --extra-cflags=-I../libvpx/dist/include --extra-ldflags=-L../libvpx/dist/lib
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat 57. 41.100 / 57. 41.100
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
[h264 @ 0x7d7510] Warning: not compiled with thread support, using thread emulation
[aac @ 0x7d81c0] Warning: not compiled with thread support, using thread emulation
[ssa @ 0x7d8e30] Warning: not compiled with thread support, using thread emulation
Input #0, matroska,webm, from 'censored filename.mkv':
Metadata:
encoder : no_variable_data
creation_time : 1970-01-01 00:00:00
Duration: 00:23:40.13, start: 0.000000, bitrate: 2789 kb/s
Stream #0:0: Video: h264 (High), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
Metadata:
BPS : 2658044
BPS-eng : 2658044
DURATION : 00:23:40.045000000
DURATION-eng : 00:23:40.045000000
NUMBER_OF_FRAMES: 34047
NUMBER_OF_FRAMES-eng: 34047
NUMBER_OF_BYTES : 471817808
NUMBER_OF_BYTES-eng: 471817808
_STATISTICS_WRITING_APP: no_variable_data
_STATISTICS_WRITING_APP-eng: no_variable_data
_STATISTICS_WRITING_DATE_UTC: 1970-01-01 00:00:00
_STATISTICS_WRITING_DATE_UTC-eng: 1970-01-01 00:00:00
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Stream #0:1(jpn): Audio: aac (LC), 44100 Hz, stereo, fltp (default)
Metadata:
BPS : 128000
BPS-eng : 128000
DURATION : 00:23:40.109000000
DURATION-eng : 00:23:40.109000000
NUMBER_OF_FRAMES: 61159
NUMBER_OF_FRAMES-eng: 61159
NUMBER_OF_BYTES : 22721748
NUMBER_OF_BYTES-eng: 22721748
_STATISTICS_WRITING_APP: no_variable_data
_STATISTICS_WRITING_APP-eng: no_variable_data
_STATISTICS_WRITING_DATE_UTC: 1970-01-01 00:00:00
_STATISTICS_WRITING_DATE_UTC-eng: 1970-01-01 00:00:00
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Stream #0:2(eng): Subtitle: ass (default)
Metadata:
BPS : 110
BPS-eng : 110
DURATION : 00:23:25.280000000
DURATION-eng : 00:23:25.280000000
NUMBER_OF_FRAMES: 298
NUMBER_OF_FRAMES-eng: 298
NUMBER_OF_BYTES : 19407
NUMBER_OF_BYTES-eng: 19407
_STATISTICS_WRITING_APP: no_variable_data
_STATISTICS_WRITING_APP-eng: no_variable_data
_STATISTICS_WRITING_DATE_UTC: 1970-01-01 00:00:00
_STATISTICS_WRITING_DATE_UTC-eng: 1970-01-01 00:00:00
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Stream #0:3: Attachment: ttf
Metadata:
filename : OpenSans-Semibold.ttf
mimetype : application/x-truetype-font
[NULL @ 0x9eac90] Unable to find a suitable output format for 'subs.srt'
subs.srt: Invalid argumentthe file is a mkv video file
Other info
Codecs:
D..... = Decoding supported
.E.... = Encoding supported
..V... = Video codec
..A... = Audio codec
..S... = Subtitle codec
...I.. = Intra frame-only codec
....L. = Lossy compression
.....S = Lossless compression
-------
..VI.. 012v Uncompressed 4:2:2 10-bit
..V.L. 4xm 4X Movie
..VI.S 8bps QuickTime 8BPS video
..VIL. a64_multi Multicolor charset for Commodore 64
..VIL. a64_multi5 Multicolor charset for Commodore 64, extended with 5th color (colram)
..V..S aasc Autodesk RLE
..VIL. aic Apple Intermediate Codec
..VI.S alias_pix Alias/Wavefront PIX image
..VIL. amv AMV Video
..V.L. anm Deluxe Paint Animation
..V.L. ansi ASCII/ANSI art
..V..S apng APNG (Animated Portable Network Graphics) image
..VIL. asv1 ASUS V1
..VIL. asv2 ASUS V2
..VIL. aura Auravision AURA
..VIL. aura2 Auravision Aura 2
..V... avrn Avid AVI Codec
..VI.. avrp Avid 1:1 10-bit RGB Packer
..V.L. avs AVS (Audio Video Standard) video
..VI.. avui Avid Meridien Uncompressed
..VI.. ayuv Uncompressed packed MS 4:4:4:4
..V.L. bethsoftvid Bethesda VID video
..V.L. bfi Brute Force & Ignorance
..V.L. binkvideo Bink video
..VI.. bintext Binary text
..VI.S bmp BMP (Windows and OS/2 bitmap)
..V..S bmv_video Discworld II BMV video
..VI.S brender_pix BRender PIX image
..V.L. c93 Interplay C93
..V.L. cavs Chinese AVS (Audio Video Standard) (AVS1-P2, JiZhun profile)
..V.L. cdgraphics CD Graphics video
..VIL. cdxl Commodore CDXL video
..V.L. cfhd Cineform HD
..V.L. cinepak Cinepak
..VIL. cljr Cirrus Logic AccuPak
..VI.S cllc Canopus Lossless Codec
..V.L. cmv Electronic Arts CMV video
..V... cpia CPiA video format
..V..S cscd CamStudio
..VIL. cyuv Creative YUV (CYUV)
..V.LS daala Daala
..VILS dds DirectDraw Surface image decoder
..V.L. dfa Chronomaster DFA
..V.LS dirac Dirac
..VIL. dnxhd VC3/DNxHD
..VI.S dpx DPX (Digital Picture Exchange) image
..V.L. dsicinvideo Delphine Software International CIN video
..VIL. dvvideo DV (Digital Video)
..V..S dxa Feeble Files/ScummVM DXA
..VI.S dxtory Dxtory
..VIL. dxv Resolume DXV
..V.L. escape124 Escape 124
..V.L. escape130 Escape 130
..VILS exr OpenEXR image
..V..S ffv1 FFmpeg video codec #1
..VI.S ffvhuff Huffyuv FFmpeg variant
..V.L. fic Mirillis FIC
..V..S flashsv Flash Screen Video v1
..V.L. flashsv2 Flash Screen Video v2
..V..S flic Autodesk Animator Flic video
..V.L. flv1 FLV / Sorenson Spark / Sorenson H.263 (Flash Video)
..V..S fraps Fraps
..VI.S frwu Forward Uncompressed
..V.L. g2m Go2Meeting
..V..S gif GIF (Graphics Interchange Format)
..V.L. h261 H.261
D.V.L. h263 H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2
..V.L. h263i Intel H.263
..V.L. h263p H.263+ / H.263-1998 / H.263 version 2
D.V.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
..VIL. hap Vidvox Hap decoder
D.V.L. hevc H.265 / HEVC (High Efficiency Video Coding)
..V.L. hnm4video HNM 4 video
..VIL. hq_hqa Canopus HQ/HQA
..VIL. hqx Canopus HQX
..VI.S huffyuv HuffYUV
..V.L. idcin id Quake II CIN video
..VI.. idf iCEDraw text
..V.L. iff_ilbm IFF ACBM/ANIM/DEEP/ILBM/PBM/RGB8/RGBN
..V.L. indeo2 Intel Indeo 2
..V.L. indeo3 Intel Indeo 3
..V.L. indeo4 Intel Indeo Video Interactive 4
..V.L. indeo5 Intel Indeo Video Interactive 5
..V.L. interplayvideo Interplay MVE video
..VILS jpeg2000 JPEG 2000
..VILS jpegls JPEG-LS
..VIL. jv Bitmap Brothers JV video
..V.L. kgv1 Kega Game Video
..V.L. kmvc Karl Morton's video codec
..VI.S lagarith Lagarith lossless
..VI.S ljpeg Lossless JPEG
..VI.S loco LOCO
..VI.S m101 Matrox Uncompressed SD
..V.L. mad Electronic Arts Madcow Video
..VI.S magicyuv MagicYUV Lossless Video
..VIL. mdec Sony PlayStation MDEC (Motion DECoder)
..V.L. mimic Mimic
DEVIL. mjpeg Motion JPEG
..VIL. mjpegb Apple MJPEG-B
..V.L. mmvideo American Laser Games MM Video
..V.L. motionpixels Motion Pixels video
..V.L. mpeg1video MPEG-1 video
D.V.L. mpeg2video MPEG-2 video
D.V.L. mpeg4 MPEG-4 part 2
..V.L. mpegvideo_xvmc MPEG-1/2 video XvMC (X-Video Motion Compensation)
..V.L. msa1 MS ATC Screen
..V.L. msmpeg4v1 MPEG-4 part 2 Microsoft variant version 1
..V.L. msmpeg4v2 MPEG-4 part 2 Microsoft variant version 2
..V.L. msmpeg4v3 MPEG-4 part 2 Microsoft variant version 3
..V..S msrle Microsoft RLE
..V.L. mss1 MS Screen 1
..VIL. mss2 MS Windows Media Video V9 Screen
..V.L. msvideo1 Microsoft Video 1
..VI.S mszh LCL (LossLess Codec Library) MSZH
..V.L. mts2 MS Expression Encoder Screen
..VIL. mvc1 Silicon Graphics Motion Video Compressor 1
..VIL. mvc2 Silicon Graphics Motion Video Compressor 2
..V.L. mxpeg Mobotix MxPEG video
..V.L. nuv NuppelVideo/RTJPEG
..V.L. paf_video Amazing Studio Packed Animation File Video
..VI.S pam PAM (Portable AnyMap) image
..VI.S pbm PBM (Portable BitMap) image
..VI.S pcx PC Paintbrush PCX image
..VI.S pgm PGM (Portable GrayMap) image
..VI.S pgmyuv PGMYUV (Portable GrayMap YUV) image
..VIL. pictor Pictor/PC Paint
..V..S png PNG (Portable Network Graphics) image
..VI.S ppm PPM (Portable PixelMap) image
..VIL. prores Apple ProRes (iCodec Pro)
..VIL. ptx V.Flash PTX image
..VI.S qdraw Apple QuickDraw
..V.L. qpeg Q-team QPEG
..V..S qtrle QuickTime Animation (RLE) video
..VI.S r10k AJA Kona 10-bit RGB Codec
..VI.S r210 Uncompressed RGB 10-bit
..VI.S rawvideo raw video
..VIL. rl2 RL2 video
..V.L. roq id RoQ video
..V.L. rpza QuickTime video (RPZA)
..V..S rscc innoHeim/Rsupport Screen Capture Codec
..V.L. rv10 RealVideo 1.0
..V.L. rv20 RealVideo 2.0
..V.L. rv30 RealVideo 3.0
..V.L. rv40 RealVideo 4.0
..V.L. sanm LucasArts SANM/SMUSH video
..V..S screenpresso Screenpresso
..VI.S sgi SGI image
..VI.S sgirle SGI RLE 8-bit
..VI.S sheervideo BitJazz SheerVideo
..V.L. smackvideo Smacker video
..V.L. smc QuickTime Graphics (SMC)
..V... smvjpeg Sigmatel Motion Video
..V.LS snow Snow
..VIL. sp5x Sunplus JPEG (SP5X)
..VI.S sunrast Sun Rasterfile image
..V.L. svq1 Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1
..V.L. svq3 Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3
..VI.S targa Truevision Targa image
..VI.. targa_y216 Pinnacle TARGA CineWave YUV16
..V.L. tdsc TDSC
..V.L. tgq Electronic Arts TGQ video
..V.L. tgv Electronic Arts TGV video
D.V.L. theora Theora
..VIL. thp Nintendo Gamecube THP video
..V.L. tiertexseqvideo Tiertex Limited SEQ video
..VI.S tiff TIFF image
..VIL. tmv 8088flex TMV
..V.L. tqi Electronic Arts TQI video
..V.L. truemotion1 Duck TrueMotion 1.0
..V.L. truemotion2 Duck TrueMotion 2.0
..V.L. truemotion2rt Duck TrueMotion 2.0 Real Time
..V..S tscc TechSmith Screen Capture Codec
..V.L. tscc2 TechSmith Screen Codec 2
..VIL. txd Renderware TXD (TeXture Dictionary) image
..V.L. ulti IBM UltiMotion
..VI.S utvideo Ut Video
..VI.S v210 Uncompressed 4:2:2 10-bit
..VI.S v210x Uncompressed 4:2:2 10-bit
..VI.. v308 Uncompressed packed 4:4:4
..VI.. v408 Uncompressed packed QT 4:4:4:4
..VI.S v410 Uncompressed 4:4:4 10-bit
..V.L. vb Beam Software VB
..VI.S vble VBLE Lossless Codec
..V.L. vc1 SMPTE VC-1
..V.L. vc1image Windows Media Video 9 Image v2
..VIL. vcr1 ATI VCR1
..VIL. vixl Miro VideoXL
..V.L. vmdvideo Sierra VMD video
..V..S vmnc VMware Screen Codec / VMware Video
D.V.L. vp3 On2 VP3
..V.L. vp5 On2 VP5
..V.L. vp6 On2 VP6
..V.L. vp6a On2 VP6 (Flash version, with alpha channel)
..V.L. vp6f On2 VP6 (Flash version)
..V.L. vp7 On2 VP7
DEV.L. vp8 On2 VP8 (encoders: libvpx )
D.V.L. vp9 Google VP9
..VILS webp WebP
..V.L. wmv1 Windows Media Video 7
..V.L. wmv2 Windows Media Video 8
..V.L. wmv3 Windows Media Video 9
..V.L. wmv3image Windows Media Video 9 Image
..VIL. wnv1 Winnov WNV1
..V..S wrapped_avframe AVFrame to AVPacket passthrough
..V.L. ws_vqa Westwood Studios VQA (Vector Quantized Animation) video
..V.L. xan_wc3 Wing Commander III / Xan
..V.L. xan_wc4 Wing Commander IV / Xxan
..VI.. xbin eXtended BINary text
..VI.S xbm XBM (X BitMap) image
..VIL. xface X-face image
..VI.S xwd XWD (X Window Dump) image
..VI.. y41p Uncompressed YUV 4:1:1 12-bit
..VI.S ylc YUY2 Lossless Codec
..V.L. yop Psygnosis YOP Video
..VI.. yuv4 Uncompressed packed 4:2:0
..V..S zerocodec ZeroCodec Lossless Video
..VI.S zlib LCL (LossLess Codec Library) ZLIB
..V..S zmbv Zip Motion Blocks Video
..A.L. 4gv 4GV (Fourth Generation Vocoder)
..A.L. 8svx_exp 8SVX exponential
..A.L. 8svx_fib 8SVX fibonacci
D.A.L. aac AAC (Advanced Audio Coding)
..A.L. aac_latm AAC LATM (Advanced Audio Coding LATM syntax)
D.A.L. ac3 ATSC A/52A (AC-3)
..A.L. adpcm_4xm ADPCM 4X Movie
..A.L. adpcm_adx SEGA CRI ADX ADPCM
..A.L. adpcm_afc ADPCM Nintendo Gamecube AFC
..A.L. adpcm_aica ADPCM Yamaha AICA
..A.L. adpcm_ct ADPCM Creative Technology
..A.L. adpcm_dtk ADPCM Nintendo Gamecube DTK
..A.L. adpcm_ea ADPCM Electronic Arts
..A.L. adpcm_ea_maxis_xa ADPCM Electronic Arts Maxis CDROM XA
..A.L. adpcm_ea_r1 ADPCM Electronic Arts R1
..A.L. adpcm_ea_r2 ADPCM Electronic Arts R2
..A.L. adpcm_ea_r3 ADPCM Electronic Arts R3
..A.L. adpcm_ea_xas ADPCM Electronic Arts XAS
..A.L. adpcm_g722 G.722 ADPCM
..A.L. adpcm_g726 G.726 ADPCM
..A.L. adpcm_g726le G.726 ADPCM little-endian
..A.L. adpcm_ima_amv ADPCM IMA AMV
..A.L. adpcm_ima_apc ADPCM IMA CRYO APC
..A.L. adpcm_ima_dat4 ADPCM IMA Eurocom DAT4
..A.L. adpcm_ima_dk3 ADPCM IMA Duck DK3
..A.L. adpcm_ima_dk4 ADPCM IMA Duck DK4
..A.L. adpcm_ima_ea_eacs ADPCM IMA Electronic Arts EACS
..A.L. adpcm_ima_ea_sead ADPCM IMA Electronic Arts SEAD
..A.L. adpcm_ima_iss ADPCM IMA Funcom ISS
..A.L. adpcm_ima_oki ADPCM IMA Dialogic OKI
..A.L. adpcm_ima_qt ADPCM IMA QuickTime
..A.L. adpcm_ima_rad ADPCM IMA Radical
..A.L. adpcm_ima_smjpeg ADPCM IMA Loki SDL MJPEG
..A.L. adpcm_ima_wav ADPCM IMA WAV
..A.L. adpcm_ima_ws ADPCM IMA Westwood
..A.L. adpcm_ms ADPCM Microsoft
..A.L. adpcm_mtaf ADPCM MTAF
..A.L. adpcm_psx ADPCM Playstation
..A.L. adpcm_sbpro_2 ADPCM Sound Blaster Pro 2-bit
..A.L. adpcm_sbpro_3 ADPCM Sound Blaster Pro 2.6-bit
..A.L. adpcm_sbpro_4 ADPCM Sound Blaster Pro 4-bit
..A.L. adpcm_swf ADPCM Shockwave Flash
..A.L. adpcm_thp ADPCM Nintendo THP
..A.L. adpcm_thp_le ADPCM Nintendo THP (Little-Endian)
..A.L. adpcm_vima LucasArts VIMA audio
..A.L. adpcm_xa ADPCM CDROM XA
..A.L. adpcm_yamaha ADPCM Yamaha
..A..S alac ALAC (Apple Lossless Audio Codec)
..A.L. amr_nb AMR-NB (Adaptive Multi-Rate NarrowBand)
..A.L. amr_wb AMR-WB (Adaptive Multi-Rate WideBand)
..A..S ape Monkey's Audio
..A.L. atrac1 ATRAC1 (Adaptive TRansform Acoustic Coding)
..A.L. atrac3 ATRAC3 (Adaptive TRansform Acoustic Coding 3)
..A.L. atrac3p ATRAC3+ (Adaptive TRansform Acoustic Coding 3+)
..A.L. avc On2 Audio for Video Codec
..A.L. binkaudio_dct Bink Audio (DCT)
..A.L. binkaudio_rdft Bink Audio (RDFT)
..A.L. bmv_audio Discworld II BMV audio
..A.L. celt Constrained Energy Lapped Transform (CELT)
..A.L. comfortnoise RFC 3389 Comfort Noise
..A.L. cook Cook / Cooker / Gecko (RealAudio G2)
..A.L. dsd_lsbf DSD (Direct Stream Digital), least significant bit first
..A.L. dsd_lsbf_planar DSD (Direct Stream Digital), least significant bit first, planar
..A.L. dsd_msbf DSD (Direct Stream Digital), most significant bit first
..A.L. dsd_msbf_planar DSD (Direct Stream Digital), most significant bit first, planar
..A.L. dsicinaudio Delphine Software International CIN audio
..A.L. dss_sp Digital Speech Standard - Standard Play mode (DSS SP)
..A..S dst DST (Direct Stream Transfer)
..A.LS dts DCA (DTS Coherent Acoustics)
..A.L. dvaudio DV audio
..A.L. eac3 ATSC A/52B (AC-3, E-AC-3)
..A.L. evrc EVRC (Enhanced Variable Rate Codec)
..A..S flac FLAC (Free Lossless Audio Codec)
..A.L. g723_1 G.723.1
..A.L. g729 G.729
..A.L. gsm GSM
..A.L. gsm_ms GSM Microsoft variant
..A.L. iac IAC (Indeo Audio Coder)
..A.L. ilbc iLBC (Internet Low Bitrate Codec)
..A.L. imc IMC (Intel Music Coder)
..A.L. interplay_dpcm DPCM Interplay
..A.L. interplayacm Interplay ACM
..A.L. mace3 MACE (Macintosh Audio Compression/Expansion) 3:1
..A.L. mace6 MACE (Macintosh Audio Compression/Expansion) 6:1
..A.L. metasound Voxware MetaSound
..A..S mlp MLP (Meridian Lossless Packing)
..A.L. mp1 MP1 (MPEG audio layer 1)
..A.L. mp2 MP2 (MPEG audio layer 2)
D.A.L. mp3 MP3 (MPEG audio layer 3)
..A.L. mp3adu ADU (Application Data Unit) MP3 (MPEG audio layer 3)
..A.L. mp3on4 MP3onMP4
..A..S mp4als MPEG-4 Audio Lossless Coding (ALS)
..A.L. musepack7 Musepack SV7
..A.L. musepack8 Musepack SV8
..A.L. nellymoser Nellymoser Asao
DEA.L. opus Opus (Opus Interactive Audio Codec) (encoders: libopus )
..A.L. paf_audio Amazing Studio Packed Animation File Audio
..A.L. pcm_alaw PCM A-law / G.711 A-law
..A..S pcm_bluray PCM signed 16|20|24-bit big-endian for Blu-ray media
..A..S pcm_dvd PCM signed 20|24-bit big-endian
..A..S pcm_f32be PCM 32-bit floating point big-endian
..A..S pcm_f32le PCM 32-bit floating point little-endian
..A..S pcm_f64be PCM 64-bit floating point big-endian
..A..S pcm_f64le PCM 64-bit floating point little-endian
..A..S pcm_lxf PCM signed 20-bit little-endian planar
..A.L. pcm_mulaw PCM mu-law / G.711 mu-law
..A..S pcm_s16be PCM signed 16-bit big-endian
..A..S pcm_s16be_planar PCM signed 16-bit big-endian planar
..A..S pcm_s16le PCM signed 16-bit little-endian
..A..S pcm_s16le_planar PCM signed 16-bit little-endian planar
..A..S pcm_s24be PCM signed 24-bit big-endian
..A..S pcm_s24daud PCM D-Cinema audio signed 24-bit
..A..S pcm_s24le PCM signed 24-bit little-endian
..A..S pcm_s24le_planar PCM signed 24-bit little-endian planar
..A..S pcm_s32be PCM signed 32-bit big-endian
..A..S pcm_s32le PCM signed 32-bit little-endian
..A..S pcm_s32le_planar PCM signed 32-bit little-endian planar
..A..S pcm_s8 PCM signed 8-bit
..A..S pcm_s8_planar PCM signed 8-bit planar
..A..S pcm_u16be PCM unsigned 16-bit big-endian
..A..S pcm_u16le PCM unsigned 16-bit little-endian
..A..S pcm_u24be PCM unsigned 24-bit big-endian
..A..S pcm_u24le PCM unsigned 24-bit little-endian
..A..S pcm_u32be PCM unsigned 32-bit big-endian
..A..S pcm_u32le PCM unsigned 32-bit little-endian
..A..S pcm_u8 PCM unsigned 8-bit
..A.L. pcm_zork PCM Zork
..A.L. qcelp QCELP / PureVoice
..A.L. qdm2 QDesign Music Codec 2
..A.L. qdmc QDesign Music
..A.L. ra_144 RealAudio 1.0 (14.4K)
..A.L. ra_288 RealAudio 2.0 (28.8K)
..A..S ralf RealAudio Lossless
..A.L. roq_dpcm DPCM id RoQ
..A..S s302m SMPTE 302M
..A.L. sdx2_dpcm DPCM Squareroot-Delta-Exact
..A..S shorten Shorten
..A.L. sipr RealAudio SIPR / ACELP.NET
..A.L. smackaudio Smacker audio
..A.L. smv SMV (Selectable Mode Vocoder)
..A.L. sol_dpcm DPCM Sol
..A... sonic Sonic
..A... sonicls Sonic lossless
..A.L. speex Speex
..A..S tak TAK (Tom's lossless Audio Kompressor)
..A..S truehd TrueHD
..A.L. truespeech DSP Group TrueSpeech
..A..S tta TTA (True Audio)
..A.L. twinvq VQF TwinVQ
..A.L. vmdaudio Sierra VMD audio
D.A.L. vorbis Vorbis
..A.L. voxware Voxware RT29 Metasound
..A... wavesynth Wave synthesis pseudo-codec
..A.LS wavpack WavPack
..A.L. westwood_snd1 Westwood Audio (SND1)
..A..S wmalossless Windows Media Audio Lossless
..A.L. wmapro Windows Media Audio 9 Professional
..A.L. wmav1 Windows Media Audio 1
..A.L. wmav2 Windows Media Audio 2
..A.L. wmavoice Windows Media Audio Voice
..A.L. xan_dpcm DPCM Xan
..A.L. xma1 Xbox Media Audio 1
..A.L. xma2 Xbox Media Audio 2
..D... bin_data binary data
..D... dvd_nav_packet DVD Nav packet
..D... klv SMPTE 336M Key-Length-Value (KLV) metadata
..D... otf OpenType font
..D... timed_id3 timed ID3 metadata
..D... ttf TrueType font
D.S... ass ASS (Advanced SSA) subtitle (decoders: ssa ass )
..S... dvb_subtitle DVB subtitles
..S... dvb_teletext DVB teletext
..S... dvd_subtitle DVD subtitles
..S... eia_608 EIA-608 closed captions
..S... hdmv_pgs_subtitle HDMV Presentation Graphic Stream subtitles
..S... hdmv_text_subtitle HDMV Text subtitle
..S... jacosub JACOsub subtitle
..S... microdvd MicroDVD subtitle
..S... mov_text MOV text
..S... mpl2 MPL2 subtitle
..S... pjs PJS (Phoenix Japanimation Society) subtitle
..S... realtext RealText subtitle
..S... sami SAMI subtitle
..S... srt SubRip subtitle with embedded timing
..S... ssa SSA (SubStation Alpha) subtitle
..S... stl Spruce subtitle format
D.S... subrip SubRip subtitle (decoders: srt )
..S... subviewer SubViewer subtitle
..S... subviewer1 SubViewer v1 subtitle
..S... text raw UTF-8 text
..S... vplayer VPlayer subtitle
D.S... webvtt WebVTT subtitle
..S... xsub XSUB