Changes between Initial Version and Version 1 of Ticket #2296
- Timestamp:
- 02/23/2013 12:10:17 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2296
- Property Status changed from new to closed
- Property Component changed from FFmpeg to avformat
- Property Version changed from 1.1.2 to git-master
- Property Keywords metadata hls segment added; libavformat, hls, segments removed
- Property Resolution changed from to duplicate
-
Ticket #2296 – Description
initial v1 1 1 I'm trying to set mpegts metadata on segments produced by hls muxer, but they won't get the metadata. 2 2 3 3 The following command can reproduce the problem: 4 4 {{{ 5 #!div style="font-size: 80%"6 The following command can reproduce the problem:7 {{{#!sh8 5 bin/ffmpeg -v 99 -i ~/Videos/trailer_iphone.m4v -acodec copy -vcodec copy -vbsf h264_mp4toannexb -metadata service_provider="myProvider" -metadata service_name="myService" -f hls -y /tmp/out.m3u8 9 }}}10 6 }}} 11 12 7 The output of the above is the following: 13 8 {{{ 14 #!div style="font-size: 80%"15 The output of the above is the following:16 {{{#!sh17 9 ffmpeg version 1.1.2 Copyright (c) 2000-2013 the FFmpeg developers 18 10 built on Feb 22 2013 07:04:25 with gcc 4.7 (Ubuntu/Linaro 4.7.2-2ubuntu1) … … 102 94 video:3270kB audio:514kB subtitle:0 global headers:0kB muxing overhead -100.000568% 103 95 [AVIOContext @ 0x856f5e0] Statistics: 3889885 bytes read, 0 seeks 104 }}}105 96 }}} 106 97 98 Inspecting the output with ffprobe 107 99 {{{ 108 #!div style="font-size: 80%"109 Inspecting the output with ffprobe110 {{{#!sh111 100 bin/ffprobe -v 99 /tmp/out1.ts 112 }}}113 101 }}} 114 115 102 The probe result 116 103 {{{ 117 #!div style="font-size: 80%"118 The probe result119 {{{#!sh120 104 ffprobe version 1.1.2 Copyright (c) 2007-2013 the FFmpeg developers 121 105 built on Feb 22 2013 07:04:25 with gcc 4.7 (Ubuntu/Linaro 4.7.2-2ubuntu1) … … 145 129 [h264 @ 0x869ed80] detected 4 logical cores 146 130 [AVIOContext @ 0x86a34a0] Statistics: 756284 bytes read, 2 seeks 147 }}}148 131 }}} 149 150 132 As it seems from the above outputs, the mpegts segments haven't got the metadata. 151 133


