issue_owner_repo
listlengths
2
2
issue_body
stringlengths
0
261k
issue_title
stringlengths
1
925
issue_comments_url
stringlengths
56
81
issue_comments_count
int64
0
2.5k
issue_created_at
stringlengths
20
20
issue_updated_at
stringlengths
20
20
issue_html_url
stringlengths
37
62
issue_github_id
int64
387k
2.46B
issue_number
int64
1
127k
[ "gpac", "gpac" ]
Hi, I've been experiencing crashes using the mp42ts tool. Some debugging shows that the write in l. 1406 of src/isomedia/stbl_write.c can corrupt the heap: stbl->SampleSize->sizes[stbl->SampleSize->sampleCount] = size; The problem is that there are scenarios in which the stbl->SampleSize->sizes buffer is allocated to just stbl->SampleSize->sampleCount elements by the preceding gf_realloc() in l. 1396. E.g. in my case I had stbl->SampleSize->sampleCount=100 while stbl->SampleSize->alloc_size was still 0. This causes the ALLOC_INC() macro to set stbl->SampleSize->alloc_size also to 100 and then to alloc just 100 elements for the buffer. In result, l.1406 then writes behind the end of the buffer. I've inlined a tiny patch below which fixed the issue for me. Obviously, there are many other ways to o how to fix it. Whichever way you do it, the stbl->SampleSize->sizes buffer just must be at least sized to stbl->SampleSize->sampleCount+1 elements after the realloc no matter what - and that's currently not the case... Proposed patch: ``` diff --git a/src/isomedia/stbl_write.c b/src/isomedia/stbl_write.c index 7eaf3e2..c0ff3de 100644 --- a/src/isomedia/stbl_write.c +++ b/src/isomedia/stbl_write.c @@ -1390,7 +1390,7 @@ void stbl_AppendSize(GF_SampleTableBox *stbl, u32 size) if (!stbl->SampleSize->sizes || (stbl->SampleSize->sampleCount==stbl->SampleSize->alloc_size)) { Bool init_table = (stbl->SampleSize->sizes==NULL) ? 1 : 0; ALLOC_INC(stbl->SampleSize->alloc_size); - if (stbl->SampleSize->sampleCount>stbl->SampleSize->alloc_size) + if (stbl->SampleSize->sampleCount>=stbl->SampleSize->alloc_size) stbl->SampleSize->alloc_size = stbl->SampleSize->sampleCount+1; stbl->SampleSize->sizes = (u32 *)gf_realloc(stbl->SampleSize->sizes, sizeof(u32)*stbl->SampleSize->alloc_size); ```
Crash with mp42ts due to heap corruption
https://api.github.com/repos/gpac/gpac/issues/375/comments
1
2016-01-15T11:30:24Z
2016-03-04T09:49:34Z
https://github.com/gpac/gpac/issues/375
126,855,816
375
[ "gpac", "gpac" ]
hi all, i am trying to use mp4box for live streaming dash content under window 7 64bit platform, i used a 46 second long pre-recorded V/A mp4 as my source file, first i used mp4box to divide it into 2 mp4 containing only 1 track each, then i used the video only file for the test, my command is: mp4box -dash-live 6000 -mpd-refresh 12 -out test.mpd src.mp4 then i use mp4client: mp4client test.mpd i got log messge: > Opening URL test.mpd > Service Connected > [GLSL] Failed to compile vertex shader: ERROR: 0:17: '' : syntax error: incorrect preprocessor directive > > [Compositor] Failed to compile vertex shader > [SyncLayer] ES1 (test.mpd): Something really wrong, decoding buffer exceeded (1271327 ms vs 3000 max) - trashing buffers i could see player GUI popped up, but nothing actually displayed... any help or advise would be appreciated!
Error open dashcast generated m4s while using mp4client
https://api.github.com/repos/gpac/gpac/issues/374/comments
7
2016-01-14T09:29:33Z
2019-06-28T15:51:18Z
https://github.com/gpac/gpac/issues/374
126,613,581
374
[ "gpac", "gpac" ]
Hello, I use DashCast on ubuntu 14.04 for transcoding a live stream in multiple qualities. However, I encounter such problem "Video scaler: error while resizing picture." Here is my command: DashCast -vf video4linux2 -vfr 24 -v4l2f yuyv422 -v /dev/video0 -conf dashcast.conf -live Here is my dashcast.conf: [v1] type=video bitrate=800000 width=1280 height=720 crop_x=0 low_delay=yes crop_y=0 codec=libx264 [v2] type=video bitrate=400000 width=640 height=360 crop_x=0 low_delay=yes crop_y=0 codec=libx264 Who can give me some guidelines? Thanks. Linda.
'Video scaler: error while resizing picture.'(DashCast Problem)
https://api.github.com/repos/gpac/gpac/issues/372/comments
2
2016-01-13T08:43:47Z
2019-06-28T15:50:48Z
https://github.com/gpac/gpac/issues/372
126,369,438
372
[ "gpac", "gpac" ]
Hi. This is most likely a stupid question, but where can I install the plugin that allows Osmo4 to be integrated into the browser? I've been currently following the instructions found here: https://gpac.wp.mines-telecom.fr/player/browser-integration/ I've installed the latest dev build for GPAC on Windows, but when I navigate to my webpage on Mozilla Firefox, I get an error that says "A plugin is needed to display this content"
Osmozilla/Osmo4 Browser Plugin Download?
https://api.github.com/repos/gpac/gpac/issues/371/comments
2
2016-01-13T01:01:44Z
2019-06-28T15:50:16Z
https://github.com/gpac/gpac/issues/371
126,315,268
371
[ "gpac", "gpac" ]
from https://sourceforge.net/p/gpac/discussion/287547/thread/904ae7e1/ GPAC looks for modules in the following directories: /usr/lib/gpac, /usr/local/lib/gpac, /opt/lib/gpac, /opt/local/lib/gpac. Do you have any of them on your disk? Otherwise you should find where the module directory is with 'locate' and add it to your LD_LIBRARY_PATH. suggest do: sudo ln -s /usr/lib/i386-linux-gnu/gpac /opt/lib/gpac but maybe it is better add /usr/lib64/gpac/ to the search PATH Thanks
default modules not found (MP4Client)
https://api.github.com/repos/gpac/gpac/issues/370/comments
16
2016-01-12T13:56:01Z
2019-06-28T15:49:39Z
https://github.com/gpac/gpac/issues/370
126,184,754
370
[ "gpac", "gpac" ]
``` $ MP4Client http://stream.flowplayer.org/drive.mpd Using config file in /Users/chris/.gpac directory System info: 8192 MB RAM - 8 cores Modules Found : 30 Loading GPAC Terminal Terminal Loaded in 112 ms Opening URL http://stream.flowplayer.org/drive.mpd Service Connected [Codec] ODM1 ES2: Cannot find decoder for stream type MPEG-4 Audio SBR Stream Setup Failure: Media Codec not found [Compositor] GLES Vertex shader not found, disabling shaders [Compositor] GLES Fragment shader not found, disabling shaders [Compositor] GLES Vertex shader not found, disabling shaders [Compositor] GLES Fragment shader not found, disabling shaders [Compositor] GLES Vertex shader not found, disabling shaders [Compositor] GLES Fragment shader not found, disabling shaders GL Error 1280 file compositor/visual_manager_3d_gl.c line 2771 GL Error 1282 file compositor/visual_manager_3d_gl.c line 2771 GL Error 1282 file compositor/visual_manager_3d_gl.c line 2771 # [...] GL Error 1282 file compositor/visual_manager_3d_gl.c line 2771 GL Error 1282 file compositor/visual_manager_3d_gl.c line 2771 GL Error 1282 file compositor/visual_manager_3d_gl.c line 2771 q [socket] cannot select, BAD descriptor CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces. Service Disconnected Deleting terminal... done (in 83 ms) - ran for 5195 ms GPAC cleanup ... $ MP4Box -version MP4Box - GPAC version 0.5.2-DEV-rev1115-gedd2b7c-master GPAC Copyright (c) Telecom ParisTech 2000-2012 GPAC Configuration: --prefix=/usr/local --use-openjpeg=no Features: GPAC_64_BITS GPAC_HAS_SSL GPAC_HAS_JPEG GPAC_HAS_PNG ``` Any ideas? See: https://github.com/gpac/gpac/issues/360#issuecomment-170244464
MP4Client does not work on OS X
https://api.github.com/repos/gpac/gpac/issues/369/comments
6
2016-01-11T16:32:33Z
2016-02-12T10:52:29Z
https://github.com/gpac/gpac/issues/369
125,983,196
369
[ "gpac", "gpac" ]
Is there a way to get a log for MP4Client DASH metrics/stats? I want a similar file that results from "MP4Client -rti" but with the estimated bandwidth, the representation bitrate, the buffer occupancy (in bytes and in seconds), the representation level, etc. along with the cpu and memory. I want to make by myself a graphic like the "stats window" in the Osmo4 GUI using this information. Thanks in advance.
MP4Client DASH metrics
https://api.github.com/repos/gpac/gpac/issues/368/comments
3
2016-01-11T06:33:20Z
2021-11-28T20:05:16Z
https://github.com/gpac/gpac/issues/368
125,882,022
368
[ "gpac", "gpac" ]
Hello, I want to transcode a live/non-live stream in multiple qualities (eg. bitrate and resolution) by DashCast in windows 64bit. The command is: D:\wamp\www>DashCast -vf dshow -vres 1280x720 -vfr 24 -v video="screen-capture-recorder" -live -npt s -time-shift -1 -seg-dur 2000 The config file is: [v1] type=video width=1280 height=720 bitrate=800000 [v2] type=video width=640 height=360 bitrate=400000 [a1] type=audio bitrate=128000 [a2] type=audio bitrate=256000 But when I run this command, I will recieved this error: [swscaler @ 00000000002cd320] [swscaler @ 00000000002b7fe0] bad src image pointers bad src image pointers Video scaler: error while resizing picture. Video scaler: error while resizing picture. [swscaler @ 00000000002cd320] [swscaler @ 00000000002b7fe0] bad src image pointers bad src image pointers Video scaler: error while resizing picture. Video scaler: error while resizing picture. [swscaler @ 00000000002cd320] [swscaler @ 00000000002b7fe0] bad src image pointers bad src image pointers Video scaler: error while resizing picture. Video scaler: error while resizing picture. [swscaler @ 00000000002cd320] [swscaler @ 00000000002b7fe0] bad src image pointers bad src image pointers Video scaler: error while resizing picture. ... What's the problem with this? Who can tell me a correct way to transcode a live/non-live stream in multiple qualities (eg. bitrate and resolution) by DashCast in windows 64bit. Thanks, James.
DashCast transcode a live/non-live stream in multiple qualities (eg. bitrate and resolution)???
https://api.github.com/repos/gpac/gpac/issues/367/comments
1
2016-01-10T06:59:47Z
2019-06-28T15:42:13Z
https://github.com/gpac/gpac/issues/367
125,804,602
367
[ "gpac", "gpac" ]
When encoding "OpenGOP" using x264 we will get one IDR at the beginning and a number of I frames marked with a recovery point SEI message. When muxing using mp4box these recovery point samples will not be put into the "rap " group but instead be marked via the "roll" group with a "roll_distance" of "0". 1.) Why "roll" instead of "rap "? 2.) Why "roll_distance" of "0"? According to ISO/IEC 14496-12:2015 chapter 10.1.1.3 "The value zero must not be used". ``` [sgpd: Sample Group Description Box] position = 18587 size = 26 version = 1 flags = 0x000000 grouping_type = roll default_length = 2 (constant) entry_count = 1 roll_distance[0] = 0 [sbgp: Sample to Group Box] position = 18613 size = 68 version = 0 flags = 0x000000 grouping_type = roll entry_count = 6 entry[0] sample_count = 477 group_description_index = 0 (not in this grouping type) entry[1] sample_count = 1 group_description_index = 1 entry[2] sample_count = 479 group_description_index = 0 (not in this grouping type) entry[3] sample_count = 1 group_description_index = 1 entry[4] sample_count = 479 group_description_index = 0 (not in this grouping type) entry[5] sample_count = 1 group_description_index = 1 ``` Version used: MP4Box - GPAC version 0.5.2-DEV-rev1114-g1108040-master [opengop.txt](https://github.com/gpac/gpac/files/78821/opengop.txt) Sample download: https://www.sendspace.com/file/okhvkn
AVC recovery point SEI and roll group / roll_distance=0
https://api.github.com/repos/gpac/gpac/issues/366/comments
1
2016-01-05T18:52:16Z
2016-01-21T16:27:19Z
https://github.com/gpac/gpac/issues/366
125,027,378
366
[ "gpac", "gpac" ]
For example, https://github.com/rbouqueau/gpac_opengl_shared_context/blob/4cae41f49f77625aaebe48b6efdb2a38935c86de/player.c#L50 may look cryptic for most API users. Instead of writing an extensive documentation, it would be better to lock access to this variables.
The high level API should not expose structure members
https://api.github.com/repos/gpac/gpac/issues/365/comments
1
2016-01-05T09:58:19Z
2019-06-28T15:41:47Z
https://github.com/gpac/gpac/issues/365
124,932,523
365
[ "gpac", "gpac" ]
Otherwise it leads to crashes where we execute a function ptr NULL, which lead to a NULL stack!
Modules interface should be validated before the modules are used
https://api.github.com/repos/gpac/gpac/issues/364/comments
1
2016-01-05T09:54:04Z
2019-06-28T15:39:32Z
https://github.com/gpac/gpac/issues/364
124,931,628
364
[ "gpac", "gpac" ]
I am using Ubuntu 14.04 LTS. I downloaded the latest GPAC source and tried to build. However, the dashcast source is creating error when I execute make. It shows the following error: make[2]: **\* [video_encoder.o] Error 1 make[2]: Leaving directory `/home/khalid/gpac/applications/dashcast' make[1]: *** [apps] Error 2 make[1]: Leaving directory`/home/khalid/gpac/applications' make: **\* [all] Error 2 How should I fix this to get the latest GPAC that has all apps running fine, most importantly dashcast? Thank you.
DashCast source code not compiling
https://api.github.com/repos/gpac/gpac/issues/363/comments
7
2016-01-01T19:09:56Z
2016-03-05T07:56:10Z
https://github.com/gpac/gpac/issues/363
124,557,688
363
[ "gpac", "gpac" ]
Hello If I add a subtitle, the last subtitle text appears forever at the end of the film. Have tested it with KMPlayer, VLC and MPC. Always the same behavior. Command-line: mp4box.exe -add "sw2.264" -add "sw2.aac" -add "sw2.srt" -new "sw2.mp4" Testet with the last version: gpac-0.5.2-DEV-rev1110
last subtitle text appears forever
https://api.github.com/repos/gpac/gpac/issues/362/comments
24
2015-12-27T12:16:38Z
2016-04-22T14:41:03Z
https://github.com/gpac/gpac/issues/362
123,975,120
362
[ "gpac", "gpac" ]
In /gpac/applications/mp4box/main.c, there is an option listed "-ffspace size" that purports to insert some free space before moof in fragmented files. This option does not appear to be consumed by any source code anywhere in gpac. When will this option be implemented?
mp4box -ffspace option is unimplemented
https://api.github.com/repos/gpac/gpac/issues/361/comments
1
2015-12-22T23:29:57Z
2016-01-26T11:12:14Z
https://github.com/gpac/gpac/issues/361
123,575,966
361
[ "gpac", "gpac" ]
Test stream: http://media.blacktrash.org/fp/test/night1.mpd The dash.js (I can't get Osmo to work on OS X, only white screen) sample player tries to load http://media.blacktrash.org/fp/test/night1/dash/1-6.m4s as last audio segment which does not exist. Counter example without template: http://stream.flowplayer.org/night1.mpd works without problems. Segment template for the audio representation is: ``` xml <SegmentTemplate timescale="44100" media="$RepresentationID$-$Number$.m4s" startNumber="1" duration="88064" initialization="$RepresentationID$-.mp4"/> ``` Maybe because 88064 / 44100 = 1.99691609977324263038 is minutely less than 2 (2 second segments)? See also: https://github.com/Dash-Industry-Forum/dash.js/issues/950 Maybe related or duplicate of #223.
-url-template not reliable, may try to load non-existing segment
https://api.github.com/repos/gpac/gpac/issues/360/comments
36
2015-12-22T21:32:58Z
2016-01-16T14:21:48Z
https://github.com/gpac/gpac/issues/360
123,559,946
360
[ "gpac", "gpac" ]
^^^^^^
-group-clean crashes on new files just made by mp4box from elementary streams
https://api.github.com/repos/gpac/gpac/issues/359/comments
1
2015-12-22T09:53:45Z
2016-03-04T16:36:42Z
https://github.com/gpac/gpac/issues/359
123,449,925
359
[ "gpac", "gpac" ]
Hello! I encountered a problem, when extracting audio tracks from a *.mp4 container, that looks like a bug. I have an *.mp4 file that contains multiple audio tracks. The audio tracks are encoded using the ALAC codec. I want to extract those into seperate audio files using mp4box. What I've tryed so far for extracting a track is this: ``` mp4box -single 1 "inputfile.mp4" -out "outputfile.m4a" ``` What happens is, it works as that a `outputfile.m4a` is created, but something with the header/codec/file info seems to be malformated. I can open and play the file in VLC, but it fails to open with Windows Media Player/Windows Media Foundation (which I need). So either I am doing something wrong during the extraction or mp4box puts the file in a weird format. The output of `mp4box -info -v "outputfile.mp4"` looks like this: ``` [iso file] Current top box start before parsing 0 [iso file] Read Box type ftyp size 20 start 0 [iso file] Current top box start before parsing 20 [iso file] Read Box type mdat size 8555577 start 20 [iso file] Current top box start before parsing 8555597 [iso file] Read Box type free size 75 start 8555597 [iso file] Current top box start before parsing 8555672 [iso file] Read Box type moov size 4895 start 8555672 [iso file] Read Box type mvhd size 108 start 8555680 [iso file] Read Box type trak size 4779 start 8555788 [iso file] Read Box type tkhd size 92 start 8555796 [iso file] Read Box type mdia size 4679 start 8555888 [iso file] Read Box type mdhd size 32 start 8555896 [iso file] Read Box type hdlr size 55 start 8555928 [iso file] Read Box type minf size 4584 start 8555983 [iso file] Read Box type smhd size 16 start 8555991 [iso file] Read Box type dinf size 36 start 8556007 [iso file] Read Box type dref size 28 start 8556015 [iso file] Read Box type url size 12 start 8556031 [iso file] Read Box type stbl size 4524 start 8556043 [iso file] Read Box type stsd size 108 start 8556051 [iso file] Read Box type alac size 92 start 8556067 [iso file] Read Box type stts size 24 start 8556159 [iso file] Read Box type stsc size 40 start 8556183 [iso file] Read Box type stsz size 3936 start 8556223 [iso file] Read Box type stco size 408 start 8560159 [iso file] Read Box type alac size 36 start 28 [iso file] Read Box type btrt size 20 start 64 * Movie Info * Timescale 600 - 1 track Computed Duration 00:01:30.928 - Indicated Duration 00:01:30.928 Fragmented File: no File Brand isom - version 1 Created: GMT Thu Dec 17 14:35:48 2015 Modified: GMT Thu Dec 17 14:35:48 2015 File has no MPEG4 IOD/OD Track # 1 Info - TrackID 1 - TimeScale 44100 Media Duration 00:01:30.929 - Indicated Duration 00:01:30.929 Media Info: Language "und (und)" - Type "soun:alac" - 979 samples Audio Track - Sample Rate 44100 - 2 channel(s) [ISOM Tools] codec parameters not known - setting codecs string to default value "alac" RFC6381 Codec Parameters: alac All samples are sync ``` I also tryed extracting the audio tracks using the `-raw` flag like this: ``` mp4box -raw 1 "inputfile.mp4" ``` It creates a `inputfile.mp4_track1.alac` file, which I can't open in any player (not even VLC). Looking at it in a HEX editor it looks like the raw data segment (which makes sense I guess), but I can't get mp4box to put it back into a .m4a which I can play. Here is a small python script to reproduce the above error: ``` python import os import subprocess def combineIntoOneMP4(): executionDir = os.path.dirname(os.path.realpath(__file__)) inputFile = os.path.join(executionDir, "TechTalk_CC_music.m4a") outputFile = os.path.join(executionDir, "testout.mp4") # main track not disabled callArgs = ["mp4box", "-add", inputFile + "#ID=Z", outputFile] for i in range(0, 4): # other tracks disabled callArgs.extend(["-add", inputFile + "#ID=Z:disable"]) #print(callArgs) subprocess.check_call(callArgs) print("Combined 5 tracks into one MP4 file: " + os.path.basename(outputFile)) def extractAudioTracks(): executionDir = os.path.dirname(os.path.realpath(__file__)) inputFile = os.path.join(executionDir, "testout.mp4") for i in range(0, 5): outputFile = os.path.join(executionDir, "extractedTrack_" + str(i + 1) + ".m4a") callArgs = ["mp4box", "-single", str(i + 1), inputFile, "-out", outputFile] #print(callArgs) subprocess.check_call(callArgs) print("Extracted tracks into seperate files.") # call functions combineIntoOneMP4() extractAudioTracks() ``` Here is a zip file containing the `TechTalk_CC_music.m4a` track that I used for testing and in the example: [Mp4Box Test.zip](https://github.com/gpac/gpac/files/68442/Mp4Box.Test.zip) So I guess the question is am I doing anything wrong? Am I maybe missing some flag while extracting? Or is mp4box simply producing wrong results? I hope somebody can point me in the right direction. Thanks in advance!
Demuxing ALAC audio tracks from .mp4 using mp4box
https://api.github.com/repos/gpac/gpac/issues/358/comments
25
2015-12-21T12:44:30Z
2019-06-28T15:38:40Z
https://github.com/gpac/gpac/issues/358
123,273,028
358
[ "gpac", "gpac" ]
Since (around) GPAC 0.5.1 mp4box sets this value which is reported in -info, usually: Chroma format 1 - Luma bit depth 8 - chroma bit depth 8 Older builds didn't do that. If I remux that old mp4's with newer mp4box, -info flush this: Chroma format 0 - Luma bit depth 8 - chroma bit depth 8 I recently joined some files and the first part hadn't set chroma value, so final file has chroma format from 1st chunk - 0. I can remux whole movie, that will change chroma format to 1, but should I bother with this... what this value actually causes? ...and I've noticed that after removing audio track, IOD root has no Audio PL updated (old value stored)
What is Chroma format ?
https://api.github.com/repos/gpac/gpac/issues/357/comments
1
2015-12-20T17:50:24Z
2016-03-30T07:26:24Z
https://github.com/gpac/gpac/issues/357
123,174,329
357
[ "gpac", "gpac" ]
How to add gif support into MP4Box? I Need to convert svg to mp4 "as is", but svg contains gif animated images and MP4Box just ignore this images, how can i add gif decoder into MP4Box? Please see https://github.com/sky-code/svg_mp4_examples examples of svg with external and inlined gif images and result of convert operation In general how to convert svg "as is" into any video format with all animations, images and other stuff? Just like a browser render svg, but render in video file
how to add decoding gif
https://api.github.com/repos/gpac/gpac/issues/356/comments
1
2015-12-19T02:41:21Z
2016-01-26T11:17:33Z
https://github.com/gpac/gpac/issues/356
123,056,309
356
[ "gpac", "gpac" ]
I can't tell from the limited documentation how to do this. It is clearly possible in the command line version: MP4Box -raw 2 file.mp4 What is the equivalent in the JavaScript version? Thanks.
extract audio using mp4box.js
https://api.github.com/repos/gpac/gpac/issues/355/comments
2
2015-12-18T19:55:31Z
2016-03-08T09:02:07Z
https://github.com/gpac/gpac/issues/355
123,015,840
355
[ "gpac", "gpac" ]
Hello! First of all: I am new to this subject, pls be patient :) I want to use mp4box inside cut assistant. cut assistant works fine with AVI-files so far. For mp4-files, I had to install ffdshow and "Haali Media Splitter" as well as mp4box. The path mp4box is set in cut asistant. So, when cutting a video, everything seems to work well first. At a time, processing breaks an a box apears "mp4box.exe funktioniert nicht mehr" (=mp4box does not work anymore) --> the programm crashed. Can anybody help me? Thank you says urmel The log is: Adjusting chunk start time to previous random access at 27.96 sec Extracting chunk Hugh_Laurie__Live_on_the_Queen_Mary_27_122.mp4 - duration 94.67s (27.96s->122.63s) IsoMedia import Hugh_Laurie__Live_on_the_Queen_Mary_27_122.mp4 - track ID 1 - Video (size 720 x 576) IsoMedia import Hugh_Laurie__Live_on_the_Queen_Mary_27_122.mp4 - track ID 2 - Audio (SR 48000 - 2 channels) Importing ISO File: |=================== | (99/100) Fehler. Die letzte gestartete Kommandozeile war: -cat "V:\0Musik\Hugh_Laurie__Live_on_the_Queen_Mary_27_122.mp4" "V:\0Musik\Hugh_Laurie__Live_on_the_Queen_Mary.cut.mp4"
mp4box crashes
https://api.github.com/repos/gpac/gpac/issues/354/comments
8
2015-12-18T09:31:02Z
2016-02-13T10:42:48Z
https://github.com/gpac/gpac/issues/354
122,912,362
354
[ "gpac", "gpac" ]
On Mac OS 10.10.5. gpac compilation errors out here: ``` make[2]: Entering directory '/Users/chris/src/gpac/applications/mp4client' CC main.c CC extract.c CC carbon_events.c carbon_events.c:68:4: warning: 'FSRefMakePath' is deprecated: first deprecated in OS X 10.8 [-Wdeprecated-declarations] FSRefMakePath(&ref, (UInt8 *) path, 4096); ^ /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h:4086:18: note: 'FSRefMakePath' has been explicitly marked deprecated here extern OSStatus FSRefMakePath(const FSRef *ref, UInt8 *path, UInt32 pathBufferSize) __OSX_AVAILABLE_BUT_DEP... ^ 1 warning generated. Undefined symbols for architecture x86_64: "_gf_net_set_ntp_shift", referenced from: _mp4client_main in main.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Makefile:45: recipe for target 'MP4Client' failed make[2]: *** [MP4Client] Error 1 make[2]: Leaving directory '/Users/chris/src/gpac/applications/mp4client' Makefile:55: recipe for target 'apps' failed make[1]: *** [apps] Error 2 make[1]: Leaving directory '/Users/chris/src/gpac/applications' Makefile:9: recipe for target 'all' failed make: *** [all] Error 2 ``` `configure --static-mp4box` fails like so: ``` make[1]: Entering directory '/Users/chris/src/gpac/applications' set -e; for i in mp4box ; do make -C $i all; done make[2]: Entering directory '/Users/chris/src/gpac/applications/mp4box' CC main.c CC fileimport.c CC filedump.c CC live.c Undefined symbols for architecture x86_64: "_ASN1_STRING_data", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_GENERAL_NAMES_free", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_OPENSSL_add_all_algorithms_noconf", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_RAND_file_name", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_RAND_load_file", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_RAND_status", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_CTX_ctrl", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_CTX_free", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) _gf_dm_del in libgpac_static.a(downloader.o) "_SSL_CTX_load_verify_locations", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_CTX_new", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_CTX_set_default_verify_paths", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_CTX_set_verify", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_connect", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_free", referenced from: _gf_dm_disconnect in libgpac_static.a(downloader.o) "_SSL_get_peer_certificate", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_get_verify_result", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_library_init", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_load_error_strings", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_new", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_read", referenced from: _http_do_requests in libgpac_static.a(downloader.o) _gf_dm_sess_fetch_data in libgpac_static.a(downloader.o) "_SSL_set_connect_state", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_set_fd", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_set_verify_result", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_SSL_shutdown", referenced from: _gf_dm_disconnect in libgpac_static.a(downloader.o) "_SSL_write", referenced from: _http_do_requests in libgpac_static.a(downloader.o) "_SSLv23_client_method", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_X509_NAME_get_text_by_NID", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_X509_free", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_X509_get_ext_d2i", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_X509_get_subject_name", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_gf_dasher_set_content_protection_location_mode", referenced from: _mp4boxMain in main.o "_gf_isom_get_media_original_duration", referenced from: _DumpTrackInfo in filedump.o "_gf_isom_get_original_duration", referenced from: _DumpMovieInfo in filedump.o "_jpeg_CreateDecompress", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_destroy_decompress", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_finish_decompress", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_read_header", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_read_scanlines", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_resync_to_restart", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_start_decompress", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_jpeg_std_error", referenced from: _gf_img_jpeg_dec in libgpac_static.a(img.o) "_png_create_info_struct", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) _gf_img_png_enc in libgpac_static.a(img.o) "_png_create_read_struct", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_create_write_struct", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_destroy_info_struct", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_destroy_read_struct", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_destroy_write_struct", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_error", referenced from: _gf_png_user_read_data in libgpac_static.a(img.o) "_png_get_color_type", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_get_image_height", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_get_image_width", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_get_io_ptr", referenced from: _gf_png_user_read_data in libgpac_static.a(img.o) _gf_png_write in libgpac_static.a(img.o) "_png_get_rowbytes", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_get_tRNS", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_read_end", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_read_image", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_read_info", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_read_update_info", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_set_IHDR", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_bgr", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_error_fn", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_set_expand", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_set_filler", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_longjmp_fn", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) _gf_png_user_error_fn in libgpac_static.a(img.o) _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_packing", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_read_fn", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_set_sBIT", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_shift", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_set_tRNS_to_alpha", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_set_write_fn", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_sig_cmp", referenced from: _gf_img_png_dec in libgpac_static.a(img.o) "_png_write_end", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_write_image", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_png_write_info", referenced from: _gf_img_png_enc in libgpac_static.a(img.o) "_sk_num", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) "_sk_value", referenced from: _gf_dm_connect in libgpac_static.a(downloader.o) ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Makefile:75: recipe for target 'MP4Box' failed make[2]: *** [MP4Box] Error 1 make[2]: Leaving directory '/Users/chris/src/gpac/applications/mp4box' Makefile:55: recipe for target 'apps' failed make[1]: *** [apps] Error 2 make[1]: Leaving directory '/Users/chris/src/gpac/applications' Makefile:9: recipe for target 'all' failed make: *** [all] Error 2 ``` I also tried with `--disable-ssl` and/or `--use-png=no` and some other desperate options to no avail.
Build failures on Mac OS X
https://api.github.com/repos/gpac/gpac/issues/353/comments
4
2015-12-17T14:44:00Z
2016-01-08T20:04:47Z
https://github.com/gpac/gpac/issues/353
122,747,638
353
[ "gpac", "gpac" ]
Our team is trying to play videos encoded in DashCast with the Dash.js player on Chrome. For some reason it seems like the output of our DashCast encoding can't be played. Oddly, we get can the videos to play on one of our team member's browsers using IE, but the videos cannot be played on any of our computers using Chrome. DashCast -v SampleVideo_720x480_50mb.mp4 -seg-dur 1000 -frag-dur 200 -mpd-refresh 1 -low-delay Below is our console log. [dash.js 1.5.1] new MediaPlayer instance has been created dash.all.js:11 Playback initiated! dash.all.js:11 Parsing complete: ( xml2json: 5ms, objectiron: 1ms, total: 0.006s) dash.all.js:11 Manifest has been refreshed at Wed Dec 16 2015 02:01:50 GMT-0500 (EST)[1450249310743] dash.all.js:11 MediaSource is open! dash.all.js:11 [object Event] dash.all.js:11 Duration successfully set to: 0 dash.all.js:11 Added 0 inline events dash.all.js:11 video codec: video/mp4;codecs="avc1.64001e" dash.all.js:11 [video] stop dash.all.js:11 No audio data. dash.all.js:11 No text data. dash.all.js:11 No fragmentedText data. dash.all.js:11 No muxed data. dash.all.js:11 [video] start dash.all.js:11 [video] Getting the request for time: 0 dash.all.js:11 [video] Index for time 0 is 0 dash.all.js:11 [video] SegmentTemplate: 0 / 1 dash.all.js:11 loaded video:Initialization Segment:NaN (200, 0ms, 63ms) dash.all.js:11 [video] Initialization finished loading dash.all.js:11 [video] Getting the request for time: 1 dash.all.js:11 [video] Index for time 1 is 0 dash.all.js:11 [video] SegmentTemplate: 0 / 1 dash.all.js:11 [video] Signal complete. dash.all.js:11 [video] Stalling Buffer dash.all.js:11 [video] Waiting for more buffer before starting playback. dash.all.js:11 [video] Getting the request for time: 0 dash.all.js:11 [video] Index for time 0 is 0 dash.all.js:11 <video> loadedmetadata dash.all.js:11 Starting playback at offset: 0 dash.all.js:11 [video] seek: 0 dash.all.js:11 [video] Getting the request for time: 0 dash.all.js:11 [video] Index for time 0 is 0 dash.all.js:11 [video] SegmentTemplate: 0 / 1 dash.all.js:11 [video] Signal complete. dash.all.js:4 GET http://137.112.104.147:8088/output/v1_1_gpac.m4s net::ERR_INCOMPLETE_CHUNKED_ENCODINGd dash.all.js:11 failed video:Media Segment:0 (0, 29ms, 122964ms) dash.all.js:11 Failed loading fragment: video:Media Segment:0, retry in 500ms attempts: 3 Any help would be appreciated. Thanks!
Can't play output of DashCast on Chrome with Dash.js
https://api.github.com/repos/gpac/gpac/issues/352/comments
6
2015-12-16T07:19:25Z
2016-06-09T16:57:20Z
https://github.com/gpac/gpac/issues/352
122,444,815
352
[ "gpac", "gpac" ]
Hi there, Back to Gpac after playing around with ffmpeg. I have managed to transcode the live stream that is coming from Http input as .ts ( Enigma 2 Dreambox )using ffmpeg with no problem, but tried to play around with Dashcast and I am just ending up with errors , tried so many commands that I found them on Gpac website but to no lack. Here is the command I used for transcoding live ts to mpd file. DashCast -av http://puplic-ip.ts -vfr 30 -vres 1280x720 -seg-dur 1000 -frag-dur 200 -conf /usr/local/nginx/html/config/testconf.conf -live -out /usr/local/nginx/html/dashed -mpd livetest.mpd And I get this erros MPD refresh time not set in live - defaulting to segment duration Options: video source: http://puplic-ip.ts video framerate: 30 video resolution: 1280x720 video crop: 0x0 audio source: http://puplic-ip.ts Configurations: [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mpeg2video @ 0x122cca0] mpeg_decode_postinit() failure [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mp1 @ 0x1222980] Header missing [mpegts @ 0x11fcc00] max_analyze_duration reached [mpegts @ 0x11fcc00] Estimating duration from bitrate, this may be inaccurate Input #0, mpegts, from 'http://puplic-ip.ts': Duration: N/A, start: 54677.575367, bitrate: 15192 kb/s Program 54140 Program 54115 Program 54165 Program 54113 Program 54120 Program 54110 Program 54175 Program 54107 Program 54180 Program 54112 Program 54185 Program 54170 Program 54101 Program 54167 Program 54102 Program 54103 Program 54150 No Program Stream #0.0[0x90c]: Video: mpeg2video (Main), yuv420p, 704x576 [PAR 12:11 DAR 4:3], 15000 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0.1[0x906]: Audio: mp1, 0 channels, s16p Stream #0.2[0x90d]: Audio: mp2, 48000 Hz, 2 channels, s16p, 192 kb/s AVCTX give frame duration of 1/50 - keeping requested rate 30, but this may result in unexpected behaviour. Error: invalid audio sample rate: 0 Press q or Q to exit... Keyboard thread exit puplic-ip is replaced with my real puplic-ip ,so file works fine with mp4client/vlc before transcoding . here is the ffmpeg that works with no issue. ffmpeg -i http://public-ip.ts -c:a libfdk_aac -ab:a 256k -c:v libx264 -s:v 640x360 -b:v 768k -ar 44100 -f segment -segment_time 10 -segment_list_type flat -segment_list_type m3u8 -segment_list /usr/share/nginx/html/livestreams/playlist.m3u8 -segment_format mpegts -segment_list_flags +live stream-%09d.ts. . ffmpeg works fine with the above code, so I am amusing all lib are fine but just cant figure it out.
DashCast transcoding LIVE TS file from Enigma 2 (HTTP.TS)
https://api.github.com/repos/gpac/gpac/issues/351/comments
4
2015-12-16T02:08:32Z
2019-06-28T15:37:45Z
https://github.com/gpac/gpac/issues/351
122,411,204
351
[ "gpac", "gpac" ]
I'd like some explanation of how accurate the bitrate of transport streams created by MP42TS is. For example, I multiplexed one audio and one video in the same service, specifying -rate 8000. The command line reported: > Done muxing - 300 sec - average rate 8009 kbps 1597738 packets written This suggests that the actual bitrate is 8,009,000 bps, and that it may not be constant. However, if I open the resulting stream in some other tools, they all report the bitrate as 8,000,000 bps. This includes DVB Analyser, DekTec StreamXpress, Tektronix Multiplexer and Tektronix TS Compliance Analyser. It's important to us that the bitrate of the transport stream is accurate and constant. First of all, please confirm whether my assumption is correct: that specifying "-rate 1" indicates a requested bitrate of 1000 bps, as opposed to 1024 bps. Secondly, can you comment on the above conflicting diagnostics?
MP42TS bitrate accuracy
https://api.github.com/repos/gpac/gpac/issues/348/comments
5
2015-12-07T14:57:22Z
2016-03-04T09:49:34Z
https://github.com/gpac/gpac/issues/348
120,791,414
348
[ "gpac", "gpac" ]
While trying to run this command `DashCast -vf video4linux2 -vres 320x240 -vfr 24 -v4l2f mjpeg -v /dev/video0 -af alsa -a plughw:1,0 -live` , I get the error ``` Input #0, alsa, from 'plughw:1,0': Duration: N/A, start: 1449489842.427411, bitrate: 1536 kb/s Stream #0:0: Audio: pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s [AVAudioResampleContext @ 0x7ff1000012e0] Invalid input channel layout: 0 Could not open the audio resampler. Aborting. An error occurred while reading audio frame. ``` It is also mentioned in https://github.com/gpac/gpac/issues/198. `arecord -l` displays the following ``` **** List of CAPTURE Hardware Devices **** card 1: PCH [HDA Intel PCH], device 0: ALC282 Analog [ALC282 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 ``` and I could record audio with arecord. What could be the problem here?
[AVAudioResampleContext @ 0x7ff1000012e0] Invalid input channel layout: 0
https://api.github.com/repos/gpac/gpac/issues/347/comments
1
2015-12-07T12:54:16Z
2019-06-28T15:37:16Z
https://github.com/gpac/gpac/issues/347
120,767,843
347
[ "gpac", "gpac" ]
Hi, had to post my question here, couldn't found any other contact addresses. I'm writting Linux gui for MP4Box. Thinking of calling it MP4Bg or MP4BG but am afraid of eventual copyright issues because of "MP4" in the name. Of course, GPAC team uses it, but that is different. Please advise and after that this topic can be erased. Thanks in advance.
Copyright
https://api.github.com/repos/gpac/gpac/issues/346/comments
1
2015-12-06T16:03:37Z
2015-12-08T09:46:47Z
https://github.com/gpac/gpac/issues/346
120,642,604
346
[ "gpac", "gpac" ]
I am on Windows 10 64-bits with GPAC version 0.5.2-DEV-rev1067-g9cfa0d1-master 64 bits. I am dashing with: `mp4box.exe -dash 10000 -profile live -out out/manifest.mpd .\audio.mp4 .\video.mp4` I am getting: ``` xml <?xml version="1.0"?> <!-- MPD file Generated with GPAC version 0.5.2-DEV-rev1067-g9cfa0d1-master at 2015-12-02T13:18:45.519Z--> <MPD xmlns="urn:mpeg:dash:schema:mpd:2011" minBufferTime="PT1.500S" type="static" mediaPresentationDuration="PT0H10M53.846S" maxSegmentDuration="PT0H0M10.005S" profiles="urn:mpeg:dash:profile:isoff-live:2011"> <ProgramInformation moreInformationURL="http://gpac.sourceforge.net"> <Title>out/manifest.mpd generated by GPAC</Title> </ProgramInformation> <Period duration="PT0H10M53.846S"> <AdaptationSet segmentAlignment="true" lang="eng"> <Representation id="1" mimeType="audio/mp4" codecs="mp4a.40.2" audioSamplingRate="48000" startWithSAP="1" bandwidth="129649"> <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/> <SegmentTemplate timescale="48000" media="audio_dash$Number$.m4s" startNumber="1" duration="479988" initialization="audio_dashinit.mp4"/> </Representation> </AdaptationSet> <AdaptationSet segmentAlignment="true" maxWidth="640" maxHeight="360" maxFrameRate="24" par="16:9" lang="eng"> <Representation id="2" mimeType="video/mp4" codecs="avc3.42c01e" width="640" height="360" frameRate="24" sar="1:1" startWithSAP="1" bandwidth="538804"> <SegmentTemplate timescale="12288" media="video_dash$Number$.m4s" startNumber="1" duration="122880" initialization="video_dashinit.mp4"/> </Representation> </AdaptationSet> </Period> </MPD> ``` This works great with dash.js 1.5.1 but for one details: codecs="avc3.42c01e" is causing Internet Explorer 11 to not recognize the stream (black screen). If I manually change to codecs="avc1.42c01e" in the manifest then it works as expected. Question: Is avc3.42c01e a standard codec notation? I was under the impression that avc1.xxxx was. How can I make it so that codecs information are reported with avc1.xxxx instead of avc3.xxxx in manifest.mpd? Thanks Arnaud
manifest.mpd reports codecs="avc3.42c01e" causing some incompatibilities with some browsers (dash.js)
https://api.github.com/repos/gpac/gpac/issues/345/comments
2
2015-12-02T13:30:37Z
2015-12-02T14:58:11Z
https://github.com/gpac/gpac/issues/345
119,940,564
345
[ "gpac", "gpac" ]
8cccf166d13521d5a866d3cccfb877cae1e96bd2 (previous commit) works. Using mingw-w64-crt 5.0.0.4592.90b8472 Configure: `--static-mp4box --extra-libs="-lz"` Error: ``` make -C applications all make[1]: Entering directory '/build/gpac-git/applications' set -e; for i in mp4box ; do make -C $i all; done make[2]: Entering directory '/build/gpac-git/applications/mp4box' CC main.c CC filedump.c main.c: In function 'wmain': main.c:4995:44: warning: passing argument 3 of 'gf_utf8_wcstombs' from incompatible pointer type [-Wincompatible-pointer-types] res_len = gf_utf8_wcstombs(argv[i], len, &src_str); ^ In file included from main.c:29:0: E:/ab-full/build/gpac-git/include/gpac/utf.h:60:8: note: expected 'const short unsigned int **' but argument is of type 'wchar_t ** {aka short unsigned int **}' size_t gf_utf8_wcstombs(char* dst, size_t dst_len, const unsigned short** srcp); ^ CC fileimport.c fileimport.c: In function 'import_file': fileimport.c:786:13: warning: variable 'read' set but not used [-Wunused-but-set-variable] size_t read; ^ CC live.c E:/ab-full/msys64/mingw32/bin/../lib/gcc/i686-w64-mingw32/5.2.0/../../../../i686-w64-mingw32/lib/../lib/libmingw32.a(lib32_libmingw32_a-crt0_c.o): In function `main': C:/repo/mingw-w64-crt-git/src/mingw-w64/mingw-w64-crt/crt/crt0_c.c:18: undefined reference to `WinMain@16' collect2.exe: error: ld returned 1 exit status Makefile:74: recipe for target 'MP4Box.exe' failed make[2]: *** [MP4Box.exe] Error 1 make[2]: Leaving directory '/build/gpac-git/applications/mp4box' Makefile:55: recipe for target 'apps' failed make[1]: *** [apps] Error 2 ```
2fac884 onward fails to build MP4Box.exe with MinGW
https://api.github.com/repos/gpac/gpac/issues/344/comments
7
2015-12-02T03:17:50Z
2016-09-26T16:41:33Z
https://github.com/gpac/gpac/issues/344
119,858,177
344
[ "gpac", "gpac" ]
Hi, I'm trying to compile GPAC on a Raspberry Pi 2 (model B) with the aim of playing DASH content using MP4Client. Has this been done before? Is it even possible? I mean, I have managed to compile GPAC (with disable-vrml because configure cannot find the Javascript library), but when I run MP4Client it doesn't display anything. I tried configure with disable-3d (because MP4Client complained about not being able to open a GL display), but it doesn't seem to help. Since the Raspberry Pi has a somewhat non-standard architecture (Broadcom SoC with integrated GPU), maybe there is something specific that I need to set? I am compiling directly on the board, so I don't need to set up a cross-compiling environment, and also the board is fast enough so compilation is reasonably fast. Thank you, Matthieu
Compiling GPAC on Raspberry Pi
https://api.github.com/repos/gpac/gpac/issues/343/comments
4
2015-12-01T09:46:52Z
2016-03-04T14:36:44Z
https://github.com/gpac/gpac/issues/343
119,679,631
343
[ "gpac", "gpac" ]
Hello there, I did set up the code in my Linux Ubuntu platform, and I typed the command of Live streaming from my webcam, as the following command "DashCast -vf video4linux2 -vfr 30 -vres 650x480 -v /device/video0 -live". I got some of the output coming in changeable files in the "Output" folder, which is in the directory of GPAC. However, I want to visualise these streams, by using the MP4Client for example, as it is stated in your documentation. But unfortunately I don't know how to manage the viewing of this live stream by the use of the MP4Client. I am really intersted in making some contribution in this field, and I am looking forward to getting the answer of how to visualise the output files. All regards,
DASHCAST: MP4Client
https://api.github.com/repos/gpac/gpac/issues/342/comments
2
2015-12-01T01:10:27Z
2016-03-04T08:39:12Z
https://github.com/gpac/gpac/issues/342
119,617,945
342
[ "gpac", "gpac" ]
If I extract VOBSUB .idx and .sub files from an MP4 file, the resulting .idx file is bad. This used to work in previous versions of mp4box. The problem appears to be the offsets are written to the file as a decimal string instead of in hex like it used to. This is an issue in the latest overnight build and goes back at least as far as gpac-0.5.2-DEV-rev724 For example: Current output: langidx: 0 id: en, index: 0 timestamp: 00:01:11:371, filepos: 000000000 timestamp: 00:01:28:621, filepos: 000004096 timestamp: 00:01:36:496, filepos: 000006144 timestamp: 00:01:44:104, filepos: 000010240 Previous (correct) output: langidx: 0 id: en, index: 0 timestamp: 00:01:11:371, filepos: 000000000 timestamp: 00:01:28:621, filepos: 000001000 timestamp: 00:01:36:496, filepos: 000001800 timestamp: 00:01:44:104, filepos: 000002800
MP4BOX vobsub extraction results in bad .idx file
https://api.github.com/repos/gpac/gpac/issues/341/comments
4
2015-11-30T18:16:57Z
2015-12-01T22:50:32Z
https://github.com/gpac/gpac/issues/341
119,549,082
341
[ "gpac", "gpac" ]
``` <GenreBox value="Action & Adventure" > <FullBoxInfo Version="0" Flags="0x1"/> <BoxInfo Size="42" Type=".gen"/> </GenreBox> ``` https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references ``` & = &amp; , &#38; or &#x26; " = &quot; , &#34; or &#x22; ' = &apos; , &#39; or &#x27; < = &lt; , &#60; or &#x3C; > = &gt; , &#62; or &#x3E; ```
-diso doesn't escape ampersands [&]
https://api.github.com/repos/gpac/gpac/issues/340/comments
1
2015-11-30T13:57:17Z
2015-12-02T16:40:19Z
https://github.com/gpac/gpac/issues/340
119,496,873
340
[ "gpac", "gpac" ]
I concatenated 2 mp4 videos using mp4box. But the concatenated video only had audio and no video. My mp4box version is 0.5.2 -DEV-rev1058. The info of my 2 mp4 are: - Movie Info * Timescale 1000 - 2 tracks Computed Duration 00:35:00.352 - Indicated Duration 00:35:00.376 Fragmented File: no File suitable for progressive download (moov before mdat) File Brand isom - version 512 Created: UNKNOWN DATE Modified: UNKNOWN DATE File has no MPEG4 IOD/OD iTunes Info: Encoder Software: Lavf56.36.100 1 UDTA types: meta (1) Track # 1 Info - TrackID 1 - TimeScale 11988 Media Duration 00:35:00.333 - Indicated Duration 00:35:00.333 Track has 1 edit lists: track duration is 00:35:00.334 Media Info: Language "und (und)" - Type "vide:avc1" - 62947 samples Visual Track layout: x=0 y=0 width=1280 height=720 MPEG-4 Config: Visual Stream - ObjectTypeIndication 0x21 AVC/H264 Video - Visual Size 1280 x 720 AVC Info: 1 SPS - 1 PPS - Profile High @ Level 3.1 NAL Unit length bits: 32 Pixel Aspect Ratio 1:1 - Indicated track size 1280 x 720 SPS#1 hash: 801A4D33112F33CB3549D8F2E6799EBFA6C92D57 PPS#1 hash: 09F88915DD329F83E58F6765D2073022BC4D3518 Self-synchronized RFC6381 Codec Parameters: avc1.64001f Average GOP length: 135 samples Track # 2 Info - TrackID 2 - TimeScale 44100 Media Duration 00:35:00.375 - Indicated Duration 00:35:00.375 Track has 1 edit lists: track duration is 00:35:00.352 Media Info: Language "und (und)" - Type "soun:mp4a" - 90456 samples MPEG-4 Config: Audio Stream - ObjectTypeIndication 0x40 MPEG-4 Audio AAC LC - 2 Channel(s) - SampleRate 44100 Synchronized on stream 1 RFC6381 Codec Parameters: mp4a.40.2 Alternate Group ID 1 All samples are sync - Movie Info * Timescale 1000 - 2 tracks Computed Duration 00:28:21.702 - Indicated Duration 00:28:21.702 Fragmented File: no File suitable for progressive download (moov before mdat) File Brand isom - version 512 Created: UNKNOWN DATE Modified: UNKNOWN DATE File has no MPEG4 IOD/OD iTunes Info: Encoder Software: Lavf56.36.100 1 UDTA types: meta (1) Track # 1 Info - TrackID 1 - TimeScale 11988 Media Duration 00:28:21.701 - Indicated Duration 00:28:21.701 Track has 1 edit lists: track duration is 00:28:21.702 Media Info: Language "und (und)" - Type "vide:avc1" - 51000 samples Visual Track layout: x=0 y=0 width=1280 height=720 MPEG-4 Config: Visual Stream - ObjectTypeIndication 0x21 AVC/H264 Video - Visual Size 1280 x 720 AVC Info: 1 SPS - 1 PPS - Profile High @ Level 3.1 NAL Unit length bits: 32 Pixel Aspect Ratio 1:1 - Indicated track size 1280 x 720 SPS#1 hash: 801A4D33112F33CB3549D8F2E6799EBFA6C92D57 PPS#1 hash: 79F756F0305C944AC3EC6510CF9F067DBEA932BF Self-synchronized RFC6381 Codec Parameters: avc1.64001f Average GOP length: 151 samples Track # 2 Info - TrackID 2 - TimeScale 44100 Media Duration 00:28:21.527 - Indicated Duration 00:28:21.527 Track has 1 edit lists: track duration is 00:28:21.527 Media Info: Language "und (und)" - Type "soun:mp4a" - 73279 samples MPEG-4 Config: Audio Stream - ObjectTypeIndication 0x40 MPEG-4 Audio AAC LC - 2 Channel(s) - SampleRate 44100 Synchronized on stream 1 RFC6381 Codec Parameters: mp4a.40.2 Alternate Group ID 1 All samples are sync I would appreciate if you could let me know the issue and way to fix it. Thanks.
Concatenated mp4 file using mp4box has no video
https://api.github.com/repos/gpac/gpac/issues/338/comments
2
2015-11-30T04:15:19Z
2015-12-02T02:00:52Z
https://github.com/gpac/gpac/issues/338
119,416,120
338
[ "gpac", "gpac" ]
Transformers: Age of Extinction ``` C:\Users\User>mp4box -diso "Z:\Transformers_ Age of Extinction (108.m4v" [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Read Box ".stt" failed (Invalid IsoMedia File) [iso file] Read Box "tx3g" failed (Invalid IsoMedia File) [iso file] Read Box "stsd" failed (Invalid IsoMedia File) [iso file] Read Box "stbl" failed (Invalid IsoMedia File) [iso file] Read Box "minf" failed (Invalid IsoMedia File) [iso file] Read Box "mdia" failed (Invalid IsoMedia File) [iso file] Read Box "trak" failed (Invalid IsoMedia File) [iso file] Read Box "moov" failed (Invalid IsoMedia File) Error opening file Z:\Transformers_ Age of Extinction (108.m4v: Invalid IsoMedia File ``` Guardians of the Galaxy ``` C:\Users\user>mp4box -diso "Z:\Guardians of the Galaxy (1080p HD).m4v" [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Apple 'alis' box found, not supported - converting to self-pointing 'url ' [iso file] Read Box ".stt" failed (Invalid IsoMedia File) [iso file] Read Box "tx3g" failed (Invalid IsoMedia File) [iso file] Read Box "stsd" failed (Invalid IsoMedia File) [iso file] Read Box "stbl" failed (Invalid IsoMedia File) [iso file] Read Box "minf" failed (Invalid IsoMedia File) [iso file] Read Box "mdia" failed (Invalid IsoMedia File) [iso file] Read Box "trak" failed (Invalid IsoMedia File) [iso file] Read Box "moov" failed (Invalid IsoMedia File) Error opening file Z:\Guardians of the Galaxy (1080p HD).m4v: Invalid IsoMe dia File ``` Maleficent ``` C:\Users\user>mp4box -diso "Z:\Maleficent (1080p HD).m4v" [iso file] Box "colr" size 18 invalid (read 19) [iso file] Unknown box .stt (0xB0737474) with payload larger than 1 MBytes, ignoring [iso file] Read Box "tx3g" failed (Invalid IsoMedia File) [iso file] Read Box "stsd" failed (Invalid IsoMedia File) [iso file] Read Box "stbl" failed (Invalid IsoMedia File) [iso file] Read Box "minf" failed (Invalid IsoMedia File) [iso file] Read Box "mdia" failed (Invalid IsoMedia File) [iso file] Read Box "trak" failed (Invalid IsoMedia File) [iso file] Read Box "moov" failed (Invalid IsoMedia File) Error opening file Z:\Maleficent (1080p HD).m4v: Invalid IsoMedia File ```
iTunes Movies - Invalid IsoMedia File
https://api.github.com/repos/gpac/gpac/issues/337/comments
15
2015-11-27T13:33:02Z
2015-12-02T17:27:11Z
https://github.com/gpac/gpac/issues/337
119,196,998
337
[ "gpac", "gpac" ]
I'm streaming from webcam using the command `-vf video4linux2 -vres 320x240 -vfr 30 -v4l2f mjpeg -v /dev/video0 -live -out /opt/lampp/htdocs/dash -conf dashcast.conf` When trying to play the stream using mp4client it displays only one frame and shows the following error. The playback is fine when I'm using libx264. ``` System info: 3988 MB RAM - 4 cores Modules Found : 32 Loading GPAC Terminal Terminal Loaded in 34 ms Opening URL http://10.42.0.18/dash/dashcast.mpd Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Service Connected [hevc @ 000000000175dec0] nb threads_frame = 3, nb threads_slice 1, thread_type = frame [hevc @ 000000000175e840] nb threads_frame = 3, nb threads_slice 1, thread_type = frame [hevc @ 0000000004032960] max_ra equal to s->max_ra 88 [hevc @ 0000000004032960] Could not find ref with POC 87 [hevc @ 0000000004032960] Replace reference 87 with 88. ```
MP4Client is not playing hevc content
https://api.github.com/repos/gpac/gpac/issues/335/comments
14
2015-11-27T09:33:51Z
2017-06-27T09:06:50Z
https://github.com/gpac/gpac/issues/335
119,162,329
335
[ "gpac", "gpac" ]
I'm trying to stream libx265 encoded video using the following command. ``` DashCast -vf video4linux2 -vres 320x240 -vfr 25 -v4l2f mjpeg -v /dev/video0 -live -out /opt/lampp/htdocs/dash -conf dashcast.conf ``` I can only play the first frame of the video using MP4Client. DashCast outputs a lot of `[dashcast] Live system dropped a video frame` and `[video_encoder] Rep v1 UTC diff at segment close: 9960 is lower than cumulated segment duration 11000 (diff -1040) - frame rate is probably not correct or frames were lost!` DashCast with libx265 takes too much CPU compared to that of libx264 (Around 300% for libx265 and 100% for libx264). How can I improve the performance and stream the video correctly? This is what I get in the client side. ``` Using config file in C:\Program Files\GPAC directory System info: 3988 MB RAM - 4 cores Modules Found : 32 Loading GPAC Terminal Terminal Loaded in 32 ms Opening URL http://10.42.0.18/dash/dashcast.mpd Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Using network protocols without global network initialization. Please use avform at_network_init(), this will become mandatory later. Service Connected [hevc @ 0000000000d8dc80] nb threads_frame = 3, nb threads_slice 1, thread_type = frame [hevc @ 0000000000d8e600] nb threads_frame = 3, nb threads_slice 1, thread_type = frame [hevc @ 0000000003712700] max_ra equal to s->max_ra 21 [hevc @ 0000000003712700] Could not find ref with POC 20 [hevc @ 0000000003712700] Replace reference 20 with 21. Could not find ref with POC 18er : | | (02/100) Replace reference 18 with 20.fer : |= | (07/100) Could not find ref with POC 16er : |== | (10/100) Replace reference 16 with 18. | (15/100) | (14/100) Could not find ref with POC 14er : |=== | (19/100) Replace reference 14 with 16. | (25/100) | (24/100) Could not find ref with POC 10er : |====== | (30/100) ``` DashCast produces the following output. ``` MPD refresh time not set in live - defaulting to segment duration Options: video source: /dev/video0 video format: video4linux2 v4l2 format: mjpeg video framerate: 25 video resolution: 320x240 video crop: 0x0 audio source: Configurations: id:v1 res:320x240 vbr:1000000 id:a1 abr:192000 [video4linux2,v4l2 @ 0x1a95b00] The driver changed the time per frame from 1/25 to 1/30 [mjpeg @ 0x1a969c0] Changeing bps to 8 Input #0, video4linux2,v4l2, from '/dev/video0': Duration: N/A, start: 86908.892811, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj422p(pc, bt470bg/unknown/unknown), 320x240, -5 kb/s, 30 fps, 30 tbr, 1000k tbn, 1000k tbc AVCTX give frame duration of 1/1000000 - keeping requested rate 25, but this may result in unexpected behaviour. [swscaler @ 0x1ababa0] deprecated pixel format used, make sure you did set range correctly [DashCast] Error in PTS , diff too small (previous 0 - current 0 Press q or Q to exit... x265 [info]: HEVC encoder version 1.7 x265 [info]: build info [Linux][GCC 4.8.2][64 bit] 8bpp x265 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX AVX2 FMA3 LZCNT BMI2 x265 [info]: Main profile, Level-2 (Main tier) x265 [info]: Thread pool created using 4 threads x265 [info]: frame threads / pool features : 1 / wpp(4 rows) x265 [info]: Coding QT: max CU size, min CU size : 64 / 8 x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra x265 [info]: ME / range / subpel / merge : hex / 57 / 2 / 2 x265 [info]: Keyframe min / max / scenecut : 25 / 250 / 40 x265 [info]: Lookahead / bframes / badapt : 20 / 4 / 2 x265 [info]: b-pyramid / weightp / weightb / refs: 1 / 1 / 0 / 3 x265 [info]: AQ: mode / str / qg-size / cu-tree : 1 / 1.0 / 64 / 1 x265 [info]: Rate Control / qCompress : ABR-1000 kbps / 0.60 x265 [info]: tools: rd=3 psy-rd=0.30 signhide tmvp strong-intra-smoothing x265 [info]: tools: deblock sao Generating MPD at 2015-11-26T09:08:00.694Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 1 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff 3828 bigger than segment duration 0 - some frame where probably lost. Adjusting Generating MPD at 2015-11-26T09:08:00.694Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 1 Generating MPD at 2015-11-26T09:08:04.522Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 4 Generating MPD at 2015-11-26T09:08:04.741Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 5 [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 4795 is lower than cumulated segment duration 6000 (diff -1205) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:05.042Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 6 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 5927 is lower than cumulated segment duration 7000 (diff -1073) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:05.490Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 7 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 6979 is lower than cumulated segment duration 8000 (diff -1021) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:06.621Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 8 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 8044 is lower than cumulated segment duration 9000 (diff -956) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:07.673Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 9 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 9122 is lower than cumulated segment duration 10000 (diff -878) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:08.738Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 10 [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 9960 is lower than cumulated segment duration 11000 (diff -1040) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:09.816Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 11 Unable to delete the file /opt/lampp/htdocs/dash/v1_0_gpac.m4s [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 11158 is lower than cumulated segment duration 12000 (diff -842) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:10.654Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 12 [video_encoder] Rep v1 UTC diff at segment close: 11952 is lower than cumulated segment duration 13000 (diff -1048) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:11.852Z Unable to delete the file /opt/lampp/htdocs/dash/v1_2_gpac.m4s StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 13 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame Generating MPD at 2015-11-26T09:08:12.647Z Unable to delete the file /opt/lampp/htdocs/dash/v1_3_gpac.m4s StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 14 [dashcast] Live system dropped a video frame [video_encoder] Rep v1 UTC diff at segment close: 14000 is lower than cumulated segment duration 15000 (diff -1000) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-11-26T09:08:13.896Z StartTime: 2015-11-26T09:08:00.694Z - startNumber 1 - last number 15 [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame ```
DashCast performance with libx265
https://api.github.com/repos/gpac/gpac/issues/334/comments
1
2015-11-26T09:17:58Z
2016-03-04T08:39:11Z
https://github.com/gpac/gpac/issues/334
119,002,733
334
[ "gpac", "gpac" ]
I'm a newbie in streaming with ffmpeg and Mp4box. I tried to find solution from some website: http://sourceforge.net/p/gpac/discussion/287547/thread/bb9a9893/?limit=50 http://stackoverflow.com/questions/33773093/convert-video-by-ffmpeg-not-working-in-chrome http://blog.streamroot.io/encode-multi-bitrate-videos-mpeg-dash-mse-based-media-players/ but I couldn't. What did i do wrong? Please help me. Thanks alot My input file is downloaded from youtube (.mp4 file). I used command to get only video with format h264 (without sound) : ``` $ ffmpeg -y -i "E:\SharingVideo\src\main\webapp\resources\video\input\input.mp4" -an -c:a libfdk_aac -ac 2 -ab 128k -c:v libx264 -x264opts 'keyint=24:min-keyint=24:no-scenecut' -b:v 1500k -maxrate 1500k -bufsize 1000k -vf "scale=-1:720" "E:\SharingVideo\src\main\webapp\resources\video\input\input_an.mp4" ``` Cmd result: ``` ffmpeg version N-76224-ga7c5005 Copyright (c) 2000-2015 the FFmpeg developers built with gcc 5.2.0 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib libavutil 55. 4.100 / 55. 4.100 libavcodec 57. 9.100 / 57. 9.100 libavformat 57. 10.101 / 57. 10.101 libavdevice 57. 0.100 / 57. 0.100 libavfilter 6. 12.100 / 6. 12.100 libswscale 4. 0.100 / 4. 0.100 libswresample 2. 0.100 / 2. 0.100 libpostproc 54. 0.100 / 54. 0.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'E:\SharingVideo\src\main\webapp\resources\video\input\input.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 creation_time : 1970-01-01 00:00:00 encoder : Lavf52.94.0 Duration: 00:02:29.95, start: 0.000000, bitrate: 1787 kb/s Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 1629 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : VideoHandler Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 151 kb/s (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : SoundHandler [libx264 @ 000000821f5fbe40] using SAR=1/1 [libx264 @ 000000821f5fbe40] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX [libx264 @ 000000821f5fbe40] profile High, level 3.1 [libx264 @ 000000821f5fbe40] 264 - core 148 r2638 7599210 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=24 keyint_min=13 scenecut=0 intra_refresh=0 rc_lookahead=24 rc=cbr mbtree=1 bitrate=1500 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=1500 vbv_bufsize=1000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to 'E:\SharingVideo\src\main\webapp\resources\video\input\input_an.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf57.10.101 Stream #0:0(und): Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 1500 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : VideoHandler encoder : Lavc57.9.100 libx264 Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264)) Press [q] to stop, [?] for help frame= 4494 fps= 38 q=-1.0 Lsize= 25050kB time=00:02:29.88 bitrate=1369.1kbits/s video:25003kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.188374% [libx264 @ 000000821f5fbe40] frame I:188 Avg QP:17.73 size: 40170 [libx264 @ 000000821f5fbe40] frame P:2060 Avg QP:23.64 size: 7302 [libx264 @ 000000821f5fbe40] frame B:2246 Avg QP:24.03 size: 1339 [libx264 @ 000000821f5fbe40] consecutive B-frames: 29.6% 8.4% 8.9% 53.1% [libx264 @ 000000821f5fbe40] mb I I16..4: 27.8% 64.1% 8.1% [libx264 @ 000000821f5fbe40] mb P I16..4: 5.4% 12.4% 0.3% P16..4: 26.4% 4.3% 2.0% 0.0% 0.0% skip:49.3% [libx264 @ 000000821f5fbe40] mb B I16..4: 0.2% 0.4% 0.0% B16..8: 17.5% 0.7% 0.1% direct: 0.9% skip:80.2% L0:41.5% L1:55.9% BI: 2.7% [libx264 @ 000000821f5fbe40] 8x8 transform intra:66.9% inter:89.7% [libx264 @ 000000821f5fbe40] coded y,uvDC,uvAC intra: 39.1% 57.7% 20.9% inter: 4.7% 10.1% 0.3% [libx264 @ 000000821f5fbe40] i16 v,h,dc,p: 43% 29% 8% 20% [libx264 @ 000000821f5fbe40] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 27% 23% 21% 4% 5% 5% 5% 5% 5% [libx264 @ 000000821f5fbe40] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 29% 26% 9% 4% 8% 7% 7% 5% 4% [libx264 @ 000000821f5fbe40] i8c dc,h,v,p: 49% 24% 20% 7% [libx264 @ 000000821f5fbe40] Weighted P-Frames: Y:9.1% UV:8.9% [libx264 @ 000000821f5fbe40] ref P L0: 74.5% 11.1% 11.0% 3.3% 0.1% [libx264 @ 000000821f5fbe40] ref B L0: 91.0% 7.9% 1.1% [libx264 @ 000000821f5fbe40] ref B L1: 96.4% 3.6% [libx264 @ 000000821f5fbe40] kb/s:1365.92 ``` Then i get audio from mp4 file: ``` ffmpeg -i "E:\SharingVideo\src\main\webapp\resources\video\input\input.mp4" -vn -acodec copy "E:\SharingVideo\src\main\webapp\resources\video\input\audio.mp4" ``` Cmd result: ``` $ ffmpeg -i "E:\SharingVideo\src\main\webapp\resources\video\input\input.mp4" -vn -acodec copy "E:\SharingVideo\src\mai n\webapp\resources\video\input\audio.mp4" ffmpeg version N-76224-ga7c5005 Copyright (c) 2000-2015 the FFmpeg developers built with gcc 5.2.0 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib libavutil 55. 4.100 / 55. 4.100 libavcodec 57. 9.100 / 57. 9.100 libavformat 57. 10.101 / 57. 10.101 libavdevice 57. 0.100 / 57. 0.100 libavfilter 6. 12.100 / 6. 12.100 libswscale 4. 0.100 / 4. 0.100 libswresample 2. 0.100 / 2. 0.100 libpostproc 54. 0.100 / 54. 0.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'E:\SharingVideo\src\main\webapp\resources\video\input\input.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 creation_time : 1970-01-01 00:00:00 encoder : Lavf52.94.0 Duration: 00:02:29.95, start: 0.000000, bitrate: 1787 kb/s Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 1629 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : VideoHandler Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 151 kb/s (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : SoundHandler [mp4 @ 0000000b967e30a0] Codec for stream 0 does not use global headers but container format requires global headers Output #0, mp4, to 'E:\SharingVideo\src\main\webapp\resources\video\input\audio.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf57.10.101 Stream #0:0(und): Audio: aac ([64][0][0][0] / 0x0040), 44100 Hz, stereo, 151 kb/s (default) Metadata: creation_time : 1970-01-01 00:00:00 handler_name : SoundHandler Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help size= 2806kB time=00:02:29.86 bitrate= 153.4kbits/s video:0kB audio:2780kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.933710% ``` After that, I created .mpd file by MP4box: ``` MP4Box -dash 10000 -profile onDemand -rap -out "E:\SharingVideo\src\main\webapp\resources\video\input\input_dash.mpd" "E:\SharingVideo\src\main\webapp\resources\video\input\input_an.mp4"#video:id=video_2Mb "E:\SharingVideo\src\main\webapp\resources\video\input\audio.mp4"#audio:id=audio ``` But in chrome it doesn't working: ``` VIDEOJS: ERROR: (CODE:3 MEDIA_ERR_DECODE) The video playback was aborted due to a corruption problem or because the video used features your browser did not support. Video Element Error: MEDIA_ERR_DECODE VIDEOJS: ERROR: (CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED) The video could not be loaded, either because the server or network failed or because the format is not supported. Video Element Error: MEDIA_ERR_SRC_NOT_SUPPORTED ```
Convert video by ffmpeg not working in chrome
https://api.github.com/repos/gpac/gpac/issues/332/comments
10
2015-11-25T09:33:16Z
2017-02-09T01:45:57Z
https://github.com/gpac/gpac/issues/332
118,795,268
332
[ "gpac", "gpac" ]
I'm trying to create a h265 encoded stream from webcam using the following command. DashCast -vf video4linux2 -v4l2f mjpeg -v /dev/video0 -conf dashcast.conf -live-media The content of dashcast.conf is [v1] type=video codec=libx265 bitrate=1000000 framerate=25 width=640 height=480 But I'm getting this error. Options: video source: /dev/video0 video format: video4linux2 v4l2 format: mjpeg video crop: 0x0 audio source: Configurations: id:v1 res:640x480 vbr:1000000 [mjpeg @ 0xb194e0] Changeing bps to 8 Input #0, video4linux2,v4l2, from '/dev/video0': Duration: N/A, start: 50349.327770, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj422p(pc, bt470bg/unknown/unknown), 1280x720, -5 kb/s, 30 fps, 30 tbr, 1000k tbn, 1000k tbc AVCTX give frame duration of 1/1000000 - keeping requested rate -1, but this may result in unexpected behaviour. [swscaler @ 0xb91ea0] deprecated pixel format used, make sure you did set range correctly Press q or Q to exit... [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame x265 [info]: HEVC encoder version 1.8+1-5dcc9d3a928c400b x265 [info]: build info [Linux][GCC 4.8.4][64 bit] 8bit x265 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX AVX2 FMA3 LZCNT BMI2 x265 [info]: Main profile, Level-3 (Main tier) x265 [info]: Thread pool created using 4 threads x265 [info]: frame threads / pool features : 1 / wpp(8 rows) [dashcast] Live system dropped a video frame x265 [info]: Coding QT: max CU size, min CU size : 64 / 8 x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra x265 [info]: ME / range / subpel / merge : hex / 57 / 2 / 2 x265 [info]: Keyframe min / max / scenecut : 25 / 250 / 40 x265 [info]: Lookahead / bframes / badapt : 20 / 4 / 2 x265 [info]: b-pyramid / weightp / weightb : 1 / 1 / 0 x265 [info]: References / ref-limit cu / depth : 3 / 0 / 0 x265 [info]: AQ: mode / str / qg-size / cu-tree : 1 / 1.0 / 32 / 1 x265 [info]: Rate Control / qCompress : ABR-1000 kbps / 0.60 x265 [info]: tools: rd=3 psy-rd=0.30 signhide tmvp strong-intra-smoothing x265 [info]: tools: deblock sao Cannot parse HEVC/H265 SPS/PPS Bad Parameter: dc_gpac_video_write_config Bad Parameter: gf_isom_start_segment Cannot open output video file. Generating MPD at 2015-11-24T19:17:46.040Z StartTime: 2015-11-24T19:17:46.040Z - startNumber 1 - last number 1 Keyboard thread exit [dashcast] Live system dropped a video frame [dashcast] Live system dropped a video frame What could be the problem? Changing codec to libx264 in the conf file works fine.
Error while trying to create dashcast stream using libx265
https://api.github.com/repos/gpac/gpac/issues/331/comments
7
2015-11-24T19:42:56Z
2016-03-04T08:39:11Z
https://github.com/gpac/gpac/issues/331
118,687,939
331
[ "gpac", "gpac" ]
I have been looking to fix or investigate this issue for the last few days, but to no lack. Anyone know why I am getting this error? as the installed is done with no error .I have installed it using this tutorial ( https://gpac.wp.mines-telecom.fr/dashcast/ ) and also downloaded the ISO latest build ( https://gpac.wp.mines-telecom.fr/downloads/gpac-nightly-builds/). both didn't work. I am and using Ubuntu server Ubuntu Server 14.04.3 LTS and its 64bit. I am totally new to Linux so please a noob explanation will be helpful. Thanks everyone for the help.
DashCast: command not found
https://api.github.com/repos/gpac/gpac/issues/329/comments
11
2015-11-23T10:28:21Z
2016-03-04T08:39:11Z
https://github.com/gpac/gpac/issues/329
118,353,692
329
[ "gpac", "gpac" ]
AVG and many other virus scanners reports a virus in the GPAC Windows installation and also in Osmo4.exe
AVG reports a virus
https://api.github.com/repos/gpac/gpac/issues/328/comments
3
2015-11-19T17:37:50Z
2015-11-26T07:05:49Z
https://github.com/gpac/gpac/issues/328
117,865,923
328
[ "gpac", "gpac" ]
Hi, I have noticed that videos, animations and user interaction in a BIFS scene running on an Android device are very (very) slow compared to how it used to be a while ago. For example in a more complex scene the TouchSensor is not even triggered most of the time (e.g. clicking a button). Here's a simple example from regression tests where some interpolators are used with Layer3D: _bifs-3D-positioning-layer3D-views.bt_. I don't know how can I see the fps on the Android device but there are no more than 5 fps. Could you investigate this issue or at least give me some hints on how should I proceed to fix this? Thank you!
Regression tests on latest nightly builds (Android)
https://api.github.com/repos/gpac/gpac/issues/327/comments
13
2015-11-19T16:20:04Z
2016-03-30T07:26:59Z
https://github.com/gpac/gpac/issues/327
117,849,247
327
[ "gpac", "gpac" ]
According to ISO/IEC 14496 Part10, the definition of 'dref' tells us that the media data can be placed in another file,so can I split a normal mp4 file into 2 mp4 file,one is metadata.mp4 and the other is mediadata.mp4?
Is there a way to split a mp4 into 2 mp4, one is metadata.mp4 and another is mediadata.mp4
https://api.github.com/repos/gpac/gpac/issues/326/comments
23
2015-11-19T10:42:01Z
2023-12-07T11:24:10Z
https://github.com/gpac/gpac/issues/326
117,786,833
326
[ "gpac", "gpac" ]
Hello, I was building MP4Box on Centos 7 Minimal Installation today and ran into errors when compiling. I have followed the same protocol a few times in the past, most recently about 36 hours ago, so I am stumped as to why I am running into these issues. I followed the instruction on this page: https://gpac.wp.mines-telecom.fr/ under the "Build MP4Box with Make" section. I have bolded the commands and pasted the outputs below each command for reference. Any help would be greatly appreciated! Thanks!, David <b>git clone https://github.com/gpac/gpac.git</b> Cloning into 'gpac'... remote: Counting objects: 76973, done. remote: Compressing objects: 100% (79/79), done. remote: Total 76973 (delta 36), reused 0 (delta 0), pack-reused 76894 Receiving objects: 100% (76973/76973), 73.74 MiB | 5.78 MiB/s, done. Resolving deltas: 100% (62815/62815), done. <b>cd gpac</b> <b>git pull</b> Already up-to-date. <b>./configure --static-mp4box --use-zlib=no</b> WARNING!! : you have forced not to use ZLIB. This will disable some core functionalities of GPAC. *\* System Configuration Install prefix: /usr/local Source path: /home/david/gpac C compiler: gcc C++ compiler: g++ make: make CPU: x86_64 Big Endian: no *\* GPAC 0.5.2-DEV rev1009-g984d462-master Core Configuration ** debug version: no GProf enabled: no Static build enabled: yes Memory tracking enabled: no Fixed-Point Version: no IPV6 Support: yes Static Modules: no *\* Detected libraries ** zlib: force-no OSS Audio: yes ALSA Audio: no Jack Audio: no PulseAudio Audio: no DirectFB support: no SDL Support: no OpenGL support: no TinyGL support: no OpenSSL support: no Mozilla XUL/GECKO support: no DVB Support: yes XMLRPC Support: no wxWidgets support: no *\* Extra Libraries used ** SpiderMonkey: no FreeType: no JPEG: no OpenJPEG: no PNG: no MAD: no FAAD: no XVID: no FFMPEG: no Xiph OGG: no Platinum UPnP: no AVCap: no A52 (AC3): no OpenSVCDecoder: no OpenHEVCDecoder: no Freenect: no Creating config.mak Check config.log for detection failures Done - type 'make help' for make info, 'make' to build <b>make -j4</b> make -C src all make[1]: Entering directory `/home/david/gpac/src' cat .deps/utils/os_divers.dep .deps/utils/os_file.dep .deps/utils/list.dep .deps/utils/bitstream.dep .deps/utils/error.dep .deps/utils/alloc.dep .deps/utils/url.dep .deps/utils/configfile.dep .deps/utils/sha1.dep .deps/utils/base_encoding.dep .deps/utils/os_net.dep .deps/utils/os_thread.dep .deps/utils/os_config_init.dep .deps/utils/cache.dep .deps/utils/downloader.dep .deps/utils/xml_parser.dep .deps/utils/utf.dep .deps/utils/token.dep .deps/utils/color.dep .deps/utils/os_module.dep .deps/utils/math.dep .deps/utils/path2d.dep .deps/utils/path2d_stroker.dep .deps/utils/module.dep .deps/utils/uni_bidi.dep .deps/utils/ringbuffer.dep .deps/utils/unicode.dep .deps/utils/map.dep .deps/mcrypt/cbc.dep .deps/mcrypt/cfb.dep .deps/mcrypt/ctr.dep .deps/mcrypt/des.dep .deps/mcrypt/ecb.dep .deps/mcrypt/g_crypt.dep .deps/mcrypt/ncfb.dep .deps/mcrypt/nofb.dep .deps/mcrypt/ofb.dep .deps/mcrypt/rijndael-128.dep .deps/mcrypt/rijndael-192.dep .deps/mcrypt/rijndael-256.dep .deps/mcrypt/stream.dep .deps/mcrypt/tripledes.dep .deps/scenegraph/base_scenegraph.dep .deps/scenegraph/mpeg4_animators.dep .deps/scenegraph/commands.dep .deps/scenegraph/mpeg4_nodes.dep .deps/scenegraph/mpeg4_valuator.dep .deps/scenegraph/vrml_interpolators.dep .deps/scenegraph/vrml_proto.dep .deps/scenegraph/vrml_route.dep .deps/scenegraph/vrml_script.dep .deps/scenegraph/vrml_smjs.dep .deps/scenegraph/vrml_tools.dep .deps/scenegraph/x3d_nodes.dep .deps/scenegraph/svg_attributes.dep .deps/scenegraph/svg_types.dep .deps/scenegraph/svg_smjs.dep .deps/scenegraph/smil_anim.dep .deps/scenegraph/smil_timing.dep .deps/scenegraph/svg_properties.dep .deps/scenegraph/dom_events.dep .deps/scenegraph/dom_smjs.dep .deps/scenegraph/xbl_process.dep .deps/scenegraph/xml_ns.dep .deps/scenegraph/html5_media_smjs.dep .deps/scenegraph/html5_mse_smjs.dep .deps/scenegraph/webvtt_smjs.dep .deps/ietf/rtcp.dep .deps/ietf/rtp.dep .deps/ietf/rtp_packetizer.dep .deps/ietf/rtp_pck_3gpp.dep .deps/ietf/rtp_pck_mpeg12.dep .deps/ietf/rtp_pck_mpeg4.dep .deps/ietf/rtsp_command.dep .deps/ietf/rtsp_common.dep .deps/ietf/rtsp_response.dep .deps/ietf/rtsp_session.dep .deps/ietf/sdp.dep .deps/ietf/rtp_depacketizer.dep .deps/ietf/rtp_streamer.dep .deps/bifs/arith_decoder.dep .deps/bifs/bifs_codec.dep .deps/bifs/bifs_node_tables.dep .deps/bifs/com_dec.dep .deps/bifs/com_enc.dep .deps/bifs/conditional.dep .deps/bifs/field_decode.dep .deps/bifs/field_encode.dep .deps/bifs/memory_decoder.dep .deps/bifs/predictive_mffield.dep .deps/bifs/quantize.dep .deps/bifs/script_dec.dep .deps/bifs/script_enc.dep .deps/bifs/unquantize.dep .deps/isomedia/avc_ext.dep .deps/isomedia/box_code_3gpp.dep .deps/isomedia/box_code_apple.dep .deps/isomedia/box_code_base.dep .deps/isomedia/box_code_drm.dep .deps/isomedia/box_code_meta.dep .deps/isomedia/box_dump.dep .deps/isomedia/box_funcs.dep .deps/isomedia/data_map.dep .deps/isomedia/drm_sample.dep .deps/isomedia/isom_intern.dep .deps/isomedia/isom_read.dep .deps/isomedia/isom_store.dep .deps/isomedia/isom_write.dep .deps/isomedia/media.dep .deps/isomedia/media_odf.dep .deps/isomedia/meta.dep .deps/isomedia/movie_fragments.dep .deps/isomedia/sample_descs.dep .deps/isomedia/stbl_read.dep .deps/isomedia/stbl_write.dep .deps/isomedia/track.dep .deps/isomedia/tx3g.dep .deps/isomedia/iff.dep .deps/isomedia/hint_track.dep .deps/isomedia/hinting.dep .deps/isomedia/box_code_adobe.dep .deps/isomedia/ttml.dep .deps/odf/desc_private.dep .deps/odf/descriptors.dep .deps/odf/odf_code.dep .deps/odf/odf_codec.dep .deps/odf/odf_command.dep .deps/odf/qos.dep .deps/odf/slc.dep .deps/odf/ipmpx_code.dep .deps/odf/oci_codec.dep .deps/odf/ipmpx_dump.dep .deps/odf/ipmpx_parse.dep .deps/odf/odf_dump.dep .deps/odf/odf_parse.dep .deps/media_tools/isom_tools.dep .deps/media_tools/dash_segmenter.dep .deps/media_tools/av_parsers.dep .deps/media_tools/img.dep .deps/media_tools/media_import.dep .deps/media_tools/mpegts.dep .deps/media_tools/m3u8.dep .deps/media_tools/mpd.dep .deps/media_tools/dash_client.dep .deps/media_tools/media_export.dep .deps/media_tools/m2ts_mux.dep .deps/media_tools/filestreamer.dep .deps/media_tools/avilib.dep .deps/media_tools/mpeg2_ps.dep .deps/media_tools/gpac_ogg.dep .deps/media_tools/ismacryp.dep .deps/media_tools/isom_hinter.dep .deps/media_tools/saf.dep .deps/media_tools/vobsub.dep .deps/media_tools/text_import.dep .deps/media_tools/html5_media.dep .deps/media_tools/html5_mse.dep .deps/media_tools/webvtt.dep .deps/scene_manager/scene_manager.dep .deps/scene_manager/text_to_bifs.dep .deps/scene_manager/loader_bt.dep .deps/scene_manager/loader_xmt.dep .deps/scene_manager/loader_isom.dep .deps/scene_manager/loader_qt.dep .deps/scene_manager/loader_svg.dep .deps/scene_manager/swf_parse.dep .deps/scene_manager/swf_bifs.dep .deps/scene_manager/swf_svg.dep .deps/scene_manager/scene_dump.dep .deps/scene_manager/scene_stats.dep .deps/scene_manager/scene_engine.dep .deps/scene_manager/encode_isom.dep .deps/terminal/channel.dep .deps/terminal/clock.dep .deps/terminal/decoder.dep .deps/terminal/term_node_init.dep .deps/terminal/input_sensor.dep .deps/terminal/media_control.dep .deps/terminal/media_manager.dep .deps/terminal/media_memory.dep .deps/terminal/media_object.dep .deps/terminal/media_sensor.dep .deps/terminal/mpeg4_inline.dep .deps/terminal/network_service.dep .deps/terminal/object_browser.dep .deps/terminal/object_manager.dep .deps/terminal/scene.dep .deps/terminal/terminal.dep .deps/terminal/svg_external.dep .deps/compositor/audio_input.dep .deps/compositor/audio_mixer.dep .deps/compositor/audio_render.dep .deps/compositor/bindable.dep .deps/compositor/camera.dep .deps/compositor/compositor.dep .deps/compositor/compositor_2d.dep .deps/compositor/compositor_3d.dep .deps/compositor/compositor_node_init.dep .deps/compositor/drawable.dep .deps/compositor/events.dep .deps/compositor/font_engine.dep .deps/compositor/hc_flash_shape.dep .deps/compositor/hardcoded_protos.dep .deps/compositor/mesh.dep .deps/compositor/mesh_collide.dep .deps/compositor/mesh_tesselate.dep .deps/compositor/mpeg4_animstream.dep .deps/compositor/mpeg4_audio.dep .deps/compositor/mpeg4_background.dep .deps/compositor/mpeg4_background2d.dep .deps/compositor/mpeg4_bitmap.dep .deps/compositor/mpeg4_composite.dep .deps/compositor/mpeg4_form.dep .deps/compositor/mpeg4_geometry_2d.dep .deps/compositor/mpeg4_geometry_3d.dep .deps/compositor/mpeg4_geometry_ifs2d.dep .deps/compositor/mpeg4_geometry_ils2d.dep .deps/compositor/mpeg4_gradients.dep .deps/compositor/mpeg4_grouping.dep .deps/compositor/mpeg4_grouping_2d.dep .deps/compositor/mpeg4_grouping_3d.dep .deps/compositor/mpeg4_layer_2d.dep .deps/compositor/mpeg4_layer_3d.dep .deps/compositor/mpeg4_layout.dep .deps/compositor/mpeg4_lighting.dep .deps/compositor/mpeg4_path_layout.dep .deps/compositor/mpeg4_sensors.dep .deps/compositor/mpeg4_sound.dep .deps/compositor/mpeg4_text.dep .deps/compositor/mpeg4_textures.dep .deps/compositor/mpeg4_timesensor.dep .deps/compositor/mpeg4_viewport.dep .deps/compositor/navigate.dep .deps/compositor/offscreen_cache.dep .deps/compositor/svg_base.dep .deps/compositor/svg_filters.dep .deps/compositor/svg_font.dep .deps/compositor/svg_geometry.dep .deps/compositor/svg_grouping.dep .deps/compositor/svg_media.dep .deps/compositor/svg_paint_servers.dep .deps/compositor/svg_text.dep .deps/compositor/texturing.dep .deps/compositor/texturing_gl.dep .deps/compositor/visual_manager.dep .deps/compositor/visual_manager_2d.dep .deps/compositor/visual_manager_2d_draw.dep .deps/compositor/visual_manager_3d.dep .deps/compositor/visual_manager_3d_gl.dep .deps/compositor/x3d_geometry.dep .deps/laser/lsr_enc.dep .deps/laser/lsr_dec.dep .deps/laser/lsr_tables.dep > ".depend" make[1]: Leaving directory`/home/david/gpac/src' make[1]: Entering directory `/home/david/gpac/src' CC utils/os_divers.c CC utils/os_file.c CC utils/list.c CC utils/bitstream.c CC utils/error.c CC utils/alloc.c CC utils/url.c CC utils/configfile.c CC utils/sha1.c CC utils/base_encoding.c CC utils/os_net.c CC utils/os_thread.c CC utils/os_config_init.c CC utils/cache.c utils/cache.c: In function ‘gf_cache_create_entry’: utils/cache.c:482:10: warning: variable ‘err’ set but not used [-Wunused-but-set-variable] GF_Err err; ^ utils/cache.c:526:10: warning: variable ‘err’ set but not used [-Wunused-but-set-variable] GF_Err err; ^ CC utils/downloader.c CC utils/xml_parser.c CC utils/utf.c CC utils/token.c CC utils/color.c CC utils/os_module.c CC utils/math.c CC utils/path2d.c CC utils/path2d_stroker.c CC utils/module.c CC utils/uni_bidi.c CC utils/ringbuffer.c CC utils/unicode.c CC utils/map.c CC ietf/rtcp.c CC ietf/rtp.c CC ietf/rtp_packetizer.c CC ietf/rtp_pck_3gpp.c CC ietf/rtp_pck_mpeg12.c CC ietf/rtp_pck_mpeg4.c CC ietf/rtsp_command.c CC ietf/rtsp_common.c CC ietf/rtsp_response.c CC ietf/rtsp_session.c CC ietf/sdp.c CC ietf/rtp_depacketizer.c CC ietf/rtp_streamer.c CC bifs/arith_decoder.c CC bifs/bifs_codec.c CC bifs/bifs_node_tables.c CC bifs/com_dec.c CC bifs/com_enc.c CC bifs/conditional.c CC bifs/field_decode.c CC bifs/field_encode.c CC bifs/memory_decoder.c CC bifs/predictive_mffield.c CC bifs/quantize.c CC bifs/script_dec.c CC bifs/script_enc.c CC bifs/unquantize.c CC odf/desc_private.c CC odf/descriptors.c CC odf/odf_code.c CC odf/odf_codec.c odf/odf_code.c: In function ‘gf_odf_write_kw’: odf/odf_code.c:2633:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC odf/odf_command.c odf/odf_command.c: In function ‘gf_odf_write_od_remove’: odf/odf_command.c:171:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ odf/odf_command.c: In function ‘gf_odf_del_ipmp_update’: odf/odf_command.c:570:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC odf/qos.c CC odf/slc.c odf/slc.c: In function ‘gf_odf_write_slc’: odf/slc.c:261:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC odf/ipmpx_code.c CC odf/oci_codec.c CC odf/ipmpx_dump.c CC odf/ipmpx_parse.c CC odf/odf_dump.c CC odf/odf_parse.c CC laser/lsr_enc.c CC laser/lsr_dec.c CC laser/lsr_tables.c CC isomedia/avc_ext.c CC isomedia/box_code_3gpp.c isomedia/box_code_3gpp.c: In function ‘styl_Write’: isomedia/box_code_3gpp.c:601:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC isomedia/box_code_apple.c CC isomedia/box_code_base.c isomedia/box_code_base.c: In function ‘mp4a_AddBox’: isomedia/box_code_base.c:3511:12: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC isomedia/box_code_drm.c isomedia/box_code_drm.c: In function ‘schm_Write’: isomedia/box_code_drm.c:196:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ CC isomedia/box_code_meta.c CC isomedia/box_dump.c CC isomedia/box_funcs.c CC isomedia/data_map.c CC isomedia/drm_sample.c CC isomedia/isom_intern.c CC isomedia/isom_read.c CC isomedia/isom_store.c CC isomedia/isom_write.c isomedia/isom_write.c: In function ‘gf_isom_set_media_timescale’: isomedia/isom_write.c:3538:3: error: stray ‘\302’ in program if (! stbl || !stbl->TimeToSample) { ^ isomedia/isom_write.c:3538:3: error: stray ‘\240’ in program isomedia/isom_write.c: In function ‘gf_isom_estimate_size’: isomedia/isom_write.c:3818:9: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] GF_Err e; ^ make[1]: *** [isomedia/isom_write.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory`/home/david/gpac/src' make: **\* [all] Error 2 <b>sudo make install</b> install -d "/usr/local" install -d "/usr/local/lib" install -d "/usr/local/bin" install -m 755 bin/gcc/MP4Box "/usr/local/bin" install: cannot stat ‘bin/gcc/MP4Box’: No such file or directory make: **\* [install] Error 1
Errors Building MP4Box with Make within last 24hours
https://api.github.com/repos/gpac/gpac/issues/325/comments
2
2015-11-19T04:19:28Z
2015-11-19T17:47:32Z
https://github.com/gpac/gpac/issues/325
117,737,998
325
[ "gpac", "gpac" ]
Hi, When I am dashing a AAC-LC audio file with following command: `MP4Box -rap -profile live -dash 2000 -out template.mpd test.m4a` In the template.mpd file, the `par` attribute appears in the `AdpatationSet` element: `<AdaptationSet segmentAlignment="true" par="1:1" lang="und">` This issue only occurs when I updated from 0.5.2-DEV-rev552-g5a1b427-master to 0.5.2-DEV-rev1006-g9f09b13-HEAD
Unnecessary "par" attribute appears in the mpd when DASH an audio file
https://api.github.com/repos/gpac/gpac/issues/324/comments
1
2015-11-18T12:22:20Z
2015-11-19T08:40:38Z
https://github.com/gpac/gpac/issues/324
117,575,258
324
[ "gpac", "gpac" ]
I need to use mp4box to DASH a video with a Japanese file name, but I get the error: Cannot open file ????????.mp4 for dashing: Requested URL is not valid or cannot be found When trying to play the video in the mp4client, I get the same error.
Cannot DASH or play video with Japanese file name
https://api.github.com/repos/gpac/gpac/issues/323/comments
17
2015-11-16T19:57:11Z
2017-07-05T11:11:05Z
https://github.com/gpac/gpac/issues/323
117,205,015
323
[ "gpac", "gpac" ]
Playback youtube 360
https://api.github.com/repos/gpac/gpac/issues/320/comments
1
2015-11-13T11:46:29Z
2021-01-27T16:20:59Z
https://github.com/gpac/gpac/issues/320
116,753,444
320
[ "gpac", "gpac" ]
Hello! I am trying to add a subtitle to my mpd file, but mp4box tells me not supported for dashing. I understand that and if I remove the last line it works fine (without the subtitle ofcourse) ``` MP4Box -dash 4000 -frag-rap -profile dashavc264:live -bs-switching no ^ -no-frags-default -segment-name $RepresentationID$/segment_ ^ -noprog -out D:\o\movie\play.mpd ^ D:\o\video_1920x1080_3500.mp4:id=video_1920x1080_3500 ^ D:\o\sub_0.srt:id=sub_fr:fmt=VTT ``` So how can I make the manifest to work with dashed files and a whole subtitle file? Example I would like it to be added like this: ``` <AdaptationSet id="21" mimeType="text/vtt" lang="fr"> <Representation id="21"> <BaseURL>subs/s-pt-fr.vtt</BaseURL> </Representation> </AdaptationSet> ``` I hope I made myself somewhat clear; thanks in advance :)
How to add a subtitle to live-mpd?
https://api.github.com/repos/gpac/gpac/issues/319/comments
1
2015-11-13T07:40:34Z
2015-11-13T08:12:57Z
https://github.com/gpac/gpac/issues/319
116,718,654
319
[ "gpac", "gpac" ]
Hello, I want to know whether or not the generation rate of MPD file is connected with the -seg-dur. What's more, how can I control the generation rate of the MPD file. Thanks, JamesXu
How can I control the generation rate of MPD file in the DashCast.
https://api.github.com/repos/gpac/gpac/issues/318/comments
1
2015-11-11T11:15:34Z
2016-03-04T08:39:11Z
https://github.com/gpac/gpac/issues/318
116,312,641
318
[ "gpac", "gpac" ]
Commit https://github.com/gpac/gpac/commit/a3363ba3edbd8346f4035f7e407ab27a39cedf4d introduces some new "cp" invocations to the Makefile with the "--no-preserve" command-line flag. This flag is specific to GNU cp, so its introduction causes "make install" to fail on MacOS X with the error "cp: illegal option -- -".
Recent changes to Makefile break installation on MacOS X
https://api.github.com/repos/gpac/gpac/issues/317/comments
1
2015-11-11T10:55:32Z
2015-11-12T07:36:49Z
https://github.com/gpac/gpac/issues/317
116,310,039
317
[ "gpac", "gpac" ]
Is there a way to get machine readable timeseries log for MP4Client? The stats window in the GUI has all the information I need however I would like to dump it to a file or preferably access it programmatically.
MP4Client machine readable log
https://api.github.com/repos/gpac/gpac/issues/316/comments
1
2015-11-10T00:10:56Z
2015-11-10T07:32:59Z
https://github.com/gpac/gpac/issues/316
115,996,758
316
[ "gpac", "gpac" ]
Cannot build MP4Client on windows. Where is the latest gpac_extra_libs package?
https://api.github.com/repos/gpac/gpac/issues/315/comments
2
2015-11-09T22:10:12Z
2015-11-10T17:14:28Z
https://github.com/gpac/gpac/issues/315
115,978,910
315
[ "gpac", "gpac" ]
I'm trying to use MP4Box to generate an mpeg-dash (html5) video using widevine drm+encryption however when I create the mpd the video is not getting encrypted. Here's my test `crypt.xml`: ``` xml <GPACDRM type="CENC AES-CTR"> <DRMInfo type="pssh" version="0"> <BS ID128="edef8ba979d64acea3c827dcd51d21ed"/> <BS data64="CAESENK2NtpQt1e8uSmYXsadcR8aCG1lZGlhZmx5IiA4ODk2YzY5MWU1Y2I0ODdlYWVhZWYwZjczM2M5ZDQ1NjIA"/> </DRMInfo> <DRMInfo type="pssh" version="0"> <BS ID128="edef8ba979d64acea3c827dcd51d21ed"/> <BS data64="CAESEAjJX4cAF1xjs+K5D94erakaCG1lZGlhZmx5IiA4ODk2YzY5MWU1Y2I0ODdlYWVhZWYwZjczM2M5ZDQ1NjIA"/> </DRMInfo> <CrypTrack IV_size="8" first_IV="0xea5cf671846578e0" isEncrypted="1" saiSavedBox="senc" trackID="1"> <key KID="0xd2b636da50b757bcb929985ec69d711f" value="0x980eb34b69b908e0332cd8a956d5e501"/> </CrypTrack> <CrypTrack IV_size="8" first_IV="0xdf7a5be5f0a9297c" isEncrypted="1" saiSavedBox="senc" trackID="2"> <key KID="0x08c95f8700175c63b3e2b90fde1eada9" value="0xff4db46688652e0a5275190f43b759fd"/> </CrypTrack> </GPACDRM> ``` Here is the command I run to create an mpd: ``` $ MP4Box -crypt crypt.xml -dash 10 -profile onDemand -out output/output.mpd input/video.mp4 input/audio.m4a ``` The generated audio and video files are playable in VLC and I get no diagnostics output from MP4Box indicating anything has gone wrong. The output mpd contains the following: ``` xml <?xml version="1.0"?> <!-- MPD file Generated with GPAC version 0.5.2-DEV-rev944-g875bb9f-master at 2015-11-06T21:09:52.862Z--> <MPD xmlns="urn:mpeg:dash:schema:mpd:2011" minBufferTime="PT1.500S" type="static" mediaPresentationDuration="PT0H0M10.624S" maxSegmentDuration="PT0H0M0.042S" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011"> <ProgramInformation moreInformationURL="http://gpac.sourceforge.net"> <Title>output/output.mpd generated by GPAC</Title> </ProgramInformation> <Period duration="PT0H0M10.624S"> <AdaptationSet segmentAlignment="true" maxWidth="1920" maxHeight="1080" maxFrameRate="90000/3768" par="1:1" lang="und" subsegmentAlignment="true" subsegmentStartsWithSAP="1"> <Representation id="1" mimeType="video/mp4" codecs="avc1.640028" width="1920" height="1080" frameRate="90000/3768" sar="1:1" startWithSAP="1" bandwidth="13696716"> <BaseURL>video_dashinit.mp4</BaseURL> <SegmentBase indexRangeExact="true" indexRange="918-3889"> <Initialization range="0-917"/> </SegmentBase> </Representation> </AdaptationSet> <AdaptationSet segmentAlignment="true" par="1:1" lang="und" subsegmentAlignment="true" subsegmentStartsWithSAP="1"> <Representation id="2" mimeType="audio/mp4" codecs="mp4a.40.2" audioSamplingRate="48000" startWithSAP="1" bandwidth="103856"> <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/> <BaseURL>audio_dashinit.mp4</BaseURL> <SegmentBase indexRangeExact="true" indexRange="848-6855"> <Initialization range="0-847"/> </SegmentBase> </Representation> </AdaptationSet> </Period> </MPD> ```
crypt with widevine does not encrypt the file
https://api.github.com/repos/gpac/gpac/issues/314/comments
6
2015-11-06T21:15:43Z
2021-02-02T15:02:09Z
https://github.com/gpac/gpac/issues/314
115,591,864
314
[ "gpac", "gpac" ]
Hi, I am trying to do a live stream use VLC UDP. I am sending a .ts file with audio and video. I would like to know is the MP4Box is capable to get this UDP directly or I need to use another API like FFmpeg.
UDP Live Stream
https://api.github.com/repos/gpac/gpac/issues/313/comments
40
2015-11-06T18:42:23Z
2019-06-28T15:36:40Z
https://github.com/gpac/gpac/issues/313
115,563,460
313
[ "gpac", "gpac" ]
Hello, I am trying to create a stable live dash stream with DashCast. The goal is to play it in dash.js but at the moment I cannot play it with MP4Client neither. I create a udp stream with ffmpeg `ffmpeg -re -i test.ts -c copy -f mpegts udp://127.0.0.1:1234?pkt_size=1316` Then with DashCast (GPAC version 0.5.2-DEV-rev976-gbad2125-master) on Ubuntu 14. `DashCast -av "udp://127.0.0.1:1234?fifo_size=100000" -live -out /var/www/dash -seg-dur 4000 -mpd-refresh 4000 -conf dashcast.conf` dashcast.conf is ``` [v1] type=video width=640 height=360 bitrate=400000 [a1] type=audio bitrate=128000 ``` Then playing my DASH stream on another computer (Windows 10) `MP4Client http://192.168.1.28/dash/dashcast.mpd` Here comes trouble: ``` PS C:\prognono\ffmpeg\bin> MP4Client http://192.168.1.28/dash/dashcast.mpd Using config file in C:\Program Files\GPAC directory System info: 16338 MB RAM - 8 cores Modules Found : 32 Loading GPAC Terminal Terminal Loaded in 29 ms Opening URL http://192.168.1.28/dash/dashcast.mpd Using network protocols without global network initialization. Please use avformat_network_init(), this will become mand atory later. Using network protocols without global network initialization. Please use avformat_network_init(), this will become mand atory later. Using network protocols without global network initialization. Please use avformat_network_init(), this will become mand atory later. Using network protocols without global network initialization. Please use avformat_network_init(), this will become mand atory later. Service Connected [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [DASH] Error in downloading new segment: http://192.168.1.28:80/dash/v1_361703427_gpac.m4s Requested URL is not valid or cannot be found - starting countdown for 4000 ms [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/a1_362262017_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/a1_3622620 17_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/a1_362262017_gpac.m4s = Requested URL is not valid or cannot be fo und... [DASH] Error in downloading new segment: http://192.168.1.28:80/dash/a1_362262017_gpac.m4s Requested URL is not valid or cannot be found - starting countdown for 3993 ms [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/a1_362262017_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/a1_3622620 17_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/a1_362262017_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/a1_362262017_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/a1_3622620 17_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/a1_362262017_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/a1_362262017_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/a1_3622620 17_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/a1_362262017_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/a1_362262017_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/a1_3622620 17_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/a1_362262017_gpac.m4s = Requested URL is not valid or cannot be fo und... [HTTP] Failure: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /dash/v1_361703427_gpac.m4s was not found on this server.</p> <hr> <address>Apache/2.4.7 (Ubuntu) Server at 192.168.1.28 Port 80</address> </body></html> [HTTP] Error parsing reply: Requested URL is not valid or cannot be found for URL http://192.168.1.28:80/dash/v1_3617034 27_gpac.m4s [DASH] FAILED to download http://192.168.1.28:80/dash/v1_361703427_gpac.m4s = Requested URL is not valid or cannot be fo und... [DX Out] Failed blitting RGB hardware memory: error 88760096 Service Disconnected Deleting terminal... done (in 981 ms) - ran for 6858 ms GPAC cleanup ... ``` I have the same bottom line error with dash.js basically the player is looking for chunks that are never created: http://192.168.1.28:80/dash/a1_362262017_gpac.m4s What does exists are chunks named a1_59_gpac.m4s or v1_59_gpac.m4s but chunks like a1_362262017_gpac.m4s are never created. Attached is the mpd. ``` xml <MPD xmlns="urn:mpeg:dash:schema:mpd:2011" availabilityStartTime="1900-01-01T00:00:00.000Z" minBufferTime="PT1.000000S" timeShiftBufferDepth="PT00H00M10S" type="dynamic" profiles="urn:mpeg:dash:profile:full:2011" minimumUpdatePeriod="PT4000S"> <ProgramInformation moreInformationURL="http://gpac.sourceforge.net"> <Title>dashcast.mpd</Title> </ProgramInformation> <Period start="PT0H0M0.000S" id="P1"> <AdaptationSet segmentAlignment="true" bitstreamSwitching="false"> <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/> <SegmentTemplate timescale="44100" duration="176128" media="$RepresentationID$_$Number$_gpac.m4s" startNumber="1" initialization="$RepresentationID$_init_gpac.mp4"/> <Representation id="a1" mimeType="audio/mp4" codecs="mp4a.40.2" audioSamplingRate="44100" startWithSAP="1" bandwidth="128000"></Representation> </AdaptationSet> <AdaptationSet segmentAlignment="true" bitstreamSwitching="false"> <SegmentTemplate timescale="24" duration="96" media="$RepresentationID$_$Number$_gpac.m4s" startNumber="1" initialization="$RepresentationID$_init_gpac.mp4"/> <Representation id="v1" mimeType="video/mp4" codecs="avc1.64001e" width="640" height="360" frameRate="24" sar="1:1" startWithSAP="1" bandwidth="400000"></Representation> </AdaptationSet> </Period> </MPD> ``` I am missing something I know but what? It seems to come from the $RepresentationID$_$Number$_gpac.m4s in the mpd. Thanks for any help you might provide. Arnaud
DashCast live with udp source with MP4Client/dash.js issue
https://api.github.com/repos/gpac/gpac/issues/312/comments
5
2015-11-06T12:49:52Z
2019-06-28T15:35:50Z
https://github.com/gpac/gpac/issues/312
115,499,157
312
[ "gpac", "gpac" ]
I am using dashCast to capture from webcam: DashCast -vf video4linux2 -v4l2f mjpeg -vfr 30 -vres 1280x720 -v /dev/video0 -af alsa -a plughw:PCH,0 -conf dashcast.conf -live -out /outdir dashcast.mpd is getting generated but with errors. when I play with dash.js, it is searching for different segment time than available and it is showing "length not defined". I am not getting the MP4Box right command for dash-ctx. Moreover, in my dash.mpd duration is less than timescale which is wrong I guess. My mpd is given below: <?xml version="1.0"?> <MPD xmlns="urn:mpeg:dash:schema:mpd:2011" availabilityStartTime="2015-11-05T11:53:16.966Z" minBufferTime="PT1.000000S" type="dynamic" profiles="urn:mpeg:dash:profile:full:2011" minimumUpdatePeriod="PT1000S"> <ProgramInformation moreInformationURL="http://gpac.sourceforge.net"> <Title>dashcast.mpd</Title> </ProgramInformation> <Period start="PT0H0M0.000S" id="P1"> <AdaptationSet segmentAlignment="true" bitstreamSwitching="false"> <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/> <SegmentTemplate timescale="48000" duration="47104" media="$RepresentationID$_$Number$_gpac.m4s" startNumber="1" initialization="$RepresentationID$_init_gpac.mp4"/> <Representation id="a1" mimeType="audio/mp4" codecs="mp4a.40.2" audioSamplingRate="48000" startWithSAP="1" bandwidth="128000"> </Representation> <Representation id="a2" mimeType="audio/mp4" codecs="mp4a.40.2" audioSamplingRate="48000" startWithSAP="1" bandwidth="256000"> </Representation> </AdaptationSet> <AdaptationSet segmentAlignment="true" bitstreamSwitching="false"> <SegmentTemplate timescale="25" duration="25" media="$RepresentationID$_$Number$_gpac.m4s" startNumber="1" initialization="$RepresentationID$_init_gpac.mp4"/> <Representation id="v1" mimeType="video/mp4" codecs="avc1.64001f" width="1280" height="720" frameRate="25" sar="1:1" startWithSAP="1" bandwidth="800000"> </Representation> <Representation id="v2" mimeType="video/mp4" codecs="avc1.64001e" width="640" height="360" frameRate="25" sar="1:1" startWithSAP="1" bandwidth="400000"> </Representation> </AdaptationSet> </Period> </MPD> while capturing the video with ffmpeg, when I run command MP4Box -dash 1000 -frag 1000 -rap -dash-profile live test.mp4, it is showing moov-atom not defined. So, I tried with -movflags empty_moov+omit_tfhd_offset+frag_keyframe+default_base_moof, still it is showing error: Thanks in advance.
Live Video Streaming from webcam in ubuntu 14.04
https://api.github.com/repos/gpac/gpac/issues/311/comments
1
2015-11-05T13:16:29Z
2016-03-04T08:39:11Z
https://github.com/gpac/gpac/issues/311
115,281,801
311
[ "gpac", "gpac" ]
Do http://gpac.io/2015/07/29/gpac-build-mp4box-only-all-platforms/ with MSVC
Create a MP4Box mini configuration + separate sln
https://api.github.com/repos/gpac/gpac/issues/308/comments
2
2015-11-03T09:56:03Z
2016-01-14T07:22:55Z
https://github.com/gpac/gpac/issues/308
114,779,525
308
[ "gpac", "gpac" ]
I installed the last nightly build (osmo4-0.5.2-DEV-latest-master-stagefright.apk) on Android 5.1.1 and the PNG images are not being displayed. I simply start Osmo4 and open a png image. There is no error in the logs except a "Invalid qct format (611)". I also compiled the sources and generate the APK and I got the same behaviour. I have tried it on some other device and got the same issue.
PNG images not displayed in Android 5.1.1
https://api.github.com/repos/gpac/gpac/issues/305/comments
37
2015-10-30T10:57:45Z
2020-07-31T14:08:05Z
https://github.com/gpac/gpac/issues/305
114,248,006
305
[ "gpac", "gpac" ]
after I finish the last procedure of README_IOS.TXT, it shows that: *\* BUILD FAILED ** The following build commands failed: CompileC build/gpac4ios.build/Release-iphoneos/libgpac_static.build/Objects-normal/armv7/faad_dec.o /Users/zihan/Desktop/gpac/modules/aac_in/faad_dec.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler (1 failure) could you kindly tell me how to fix this problem? thanks a lot~
having a problem when compiling GPAC on Mac...
https://api.github.com/repos/gpac/gpac/issues/304/comments
17
2015-10-30T03:47:43Z
2021-08-16T19:43:04Z
https://github.com/gpac/gpac/issues/304
114,194,390
304
[ "gpac", "gpac" ]
Hi, I am trying to create a live stream. I am using the follow command: MP4Box -dash 1000 -profile live video.mp4 With MP4Client the MPD works fine but when I try to use with dash.js form dash-if I am receiving this log and the video does not start. [Log] [dash.js 1.5.1] new MediaPlayer instance has been created (dash.all.js, line 10) [Log] Playback initiated! (dash.all.js, line 10) [Log] Parsing complete: ( xml2json: 2ms, objectiron: 2ms, total: 0.004s) (dash.all.js, line 10) [Log] Manifest has been refreshed at Thu Oct 29 2015 12:46:41 GMT-0300 (BRT)[1446133601295](dash.all.js, line 10) [Log] MediaSource is open! (dash.all.js, line 10) [Log] [object Event](dash.all.js, line 10) [Log] Duration successfully set to: 269.933 (dash.all.js, line 10) [Log] Added 0 inline events (dash.all.js, line 10) [Log] video codec: video/mp4;codecs="avc3.428015" (dash.all.js, line 10) [Log] [video] stop (dash.all.js, line 10) [Log] No audio data. (dash.all.js, line 10) [Log] No text data. (dash.all.js, line 10) [Log] No fragmentedText data. (dash.all.js, line 10) [Log] No muxed data. (dash.all.js, line 10) [Log] [video] start (dash.all.js, line 10) [Log] loaded video:Initialization Segment:NaN (200, 0ms, 347ms) (dash.all.js, line 10) [Log] [video] Initialization finished loading (dash.all.js, line 10) In this case I separated the video from the audio but I am just using the video.
MPD created with MP4BOX work with MP4Client but is not working with dash.js
https://api.github.com/repos/gpac/gpac/issues/303/comments
6
2015-10-29T15:47:50Z
2015-11-04T19:07:19Z
https://github.com/gpac/gpac/issues/303
114,079,887
303
[ "gpac", "gpac" ]
Hello. I get gpac revision-727 and tried to build version for Android from original sources. The build command used is "./gpac_build_android -ndk=/opt/android_ndk -sdk=/opt/android_sdk -ant=/usr/bin/ant -force_rebuild". The target used by default is 18 API, however, I test it on Nexus 6, Android 5.1.1. In the end of building process I got the error "zipalign: error while loading shared libraries: libc++.so: cannot open shared object file: No such file or directory", but the build is successful, I mean I can find /gpac/applications/osmo4_android/bin/Osmo4-release.apk file. When I open it, I got several errors: "Error [Core] Cannot load module file /data/data/com.gpac.Osmo4/lib//libgm_ffmpeg_in.so, error is dlopen failed: cannot locate symbol "_ZN7android16MediaBufferGroup14acquire_bufferEPPNS_11MediaBufferE" referenced by "libavcodec.so"... "Error [Core] Cannot load library libgm_ffmepg_in.so" "Error [Terminal] Did not find any input plugin for URL /data/data/com.gpac.Osmo4/gui/extensions/bifs_tests/ (no mime type)" Then I tried to open .mpd (DASH) file and errors: "Error [Codec] ODM1 ES1: Cannot find decoder for stream type MPEG-4 AVC|H264 Video" Just in case I tried to test this apk in Genymotion. With Nexus 4 - 4.3 - API 18 Osmo4 gives me next error just on start: "Error [Terminal Did not find any input plugin for URL /data/data/com.gpac.Osmo4/gui/extensions/bifs_tests/ (no mime type)" However, when I open .mpd (DASH) file, the video works well. With Nexus 6 - 5.1.0 - API 22 Osmo4 gives the same error as in previous case, but the video doesn't work. How can I make it works on real Android devices? For beginning, at least on Nexus 6 with Android 5.1.0.
gpac rev-727 built from sources doesn't work on Android 5.1
https://api.github.com/repos/gpac/gpac/issues/302/comments
36
2015-10-29T10:31:32Z
2019-03-29T17:45:31Z
https://github.com/gpac/gpac/issues/302
114,021,181
302
[ "gpac", "gpac" ]
I do merge two 3gp files by using the following command: MP4Box file1.3gp -cat file2.3gp -out output.3gp I found MP4Box can't process sbgp or sgpd box. If there are sbgp and sgpd boxex in file2.3gp, MP4Box will discard those boxes when concatenating two files. why does MP4Box not process those boxes? Is it a bug?
MP4Box can't process sbgp or sgpd box
https://api.github.com/repos/gpac/gpac/issues/300/comments
2
2015-10-29T04:10:11Z
2015-11-16T12:19:12Z
https://github.com/gpac/gpac/issues/300
113,976,658
300
[ "gpac", "gpac" ]
In line 8166 of src/media_tools/media_import.c as of commit f2dc63a1608619bc625451a7d9ef7a5b760bfbac There is the conditional statement ``` if (samp->DTS >= pck->stream->first_dts) { . . } else { GF_LOG(GF_LOG_ERROR, GF_LOG_CONTAINER, ("[MPEG-2 TS Import] negative time sample - skipping\n")); } ``` We have found that the samp->DTS value appears to wraparound causing mp4box to needlessly drop data. I have made a very simple patch in my own fork of gpac, https://github.com/NathanLewis/gpac that appears to fix the problem. I have .ts input file which reproduces the data loss problem which I am happy to provide to anyone investigating this but cannot make world viewable due to copyright issues. Thanks, Nathan
negative time sample causing loss of data
https://api.github.com/repos/gpac/gpac/issues/298/comments
7
2015-10-26T17:57:12Z
2015-11-19T17:28:23Z
https://github.com/gpac/gpac/issues/298
113,414,064
298
[ "gpac", "gpac" ]
Wish I had better Steps To Reproduce, but I'm seeing occasional .m4s files being produced that are invalid and can't be decoded by browsers. From running: ``` bin/gcc/DashCast -vf avfoundation -vres 1280x720 -v "Capture screen 0" -vfr 25 -live -no-loop ``` See also: https://github.com/google/shaka-player/issues/215
DashCast producing invalid segments
https://api.github.com/repos/gpac/gpac/issues/297/comments
1
2015-10-23T20:58:39Z
2019-06-28T15:31:32Z
https://github.com/gpac/gpac/issues/297
113,099,282
297
[ "gpac", "gpac" ]
Hi, is any way to rearrange tracks ID's when importing via mp4box? It always cloning them from original, I don't want audio on ID#1 :/ Can't dump to raw, it's vfr movie.
TrackID change?
https://api.github.com/repos/gpac/gpac/issues/296/comments
3
2015-10-23T08:50:44Z
2015-11-16T12:33:36Z
https://github.com/gpac/gpac/issues/296
112,979,536
296
[ "gpac", "gpac" ]
Hi, I tried to use the mpegts testapps form the gpac repository, but I am just receiving GF_M2TS_EVT_PES_PCR instead of GF_M2TS_EVT_PES_PCK. I tried different files and the same result for all. What is the problem? and is there any way to get this information? I would like to save in a buffer or an extern file to make test. Thank you.
How can I extract the Video and Audio from a TS File?
https://api.github.com/repos/gpac/gpac/issues/295/comments
0
2015-10-22T20:08:19Z
2015-10-24T19:19:03Z
https://github.com/gpac/gpac/issues/295
112,881,335
295
[ "gpac", "gpac" ]
In three terminal tabs, I run: term1: ``` ➜ buildz git:(master) ✗ bin/gcc/DashCast -vf avfoundation -vres 480x360 -v "FaceTime HD Camera" -vfr 25 -live MPD refresh time not set in live - defaulting to segment duration Options: video source: FaceTime HD Camera video format: avfoundation video framerate: 25 video resolution: 480x360 video crop: 0x0 audio source: Configurations: id:v1 res:1280x720 vbr:1000000 id:a1 abr:192000 [avfoundation @ 0x7fe7dc801a00] Selected pixel format (yuv420p) is not supported by the input device. [avfoundation @ 0x7fe7dc801a00] Supported pixel formats: [avfoundation @ 0x7fe7dc801a00] uyvy422 [avfoundation @ 0x7fe7dc801a00] yuyv422 [avfoundation @ 0x7fe7dc801a00] nv12 [avfoundation @ 0x7fe7dc801a00] 0rgb [avfoundation @ 0x7fe7dc801a00] bgr0 [avfoundation @ 0x7fe7dc801a00] Overriding selected pixel format to use uyvy422 instead. Input #0, avfoundation, from 'FaceTime HD Camera': Duration: N/A, start: 376205.530067, bitrate: N/A Stream #0:0: Video: rawvideo (UYVY / 0x59565955), uyvy422, 480x360, 25 tbr, 1000k tbn, 1000k tbc AVCTX give frame duration of 1/1000000 - keeping requested rate 25, but this may result in unexpected behaviour. [DashCast] Error in PTS , diff too small (previous 0 - current 0 Press q or Q to exit... [libx264 @ 0x7fe7dc80c800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX [libx264 @ 0x7fe7dc80c800] profile High, level 3.1 [libx264 @ 0x7fe7dc80c800] 264 - core 146 r2555 0c21480 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=25 keyint_min=2 scenecut=40 intra_refresh=0 rc_lookahead=25 rc=abr mbtree=1 bitrate=1000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Generating MPD at 2015-10-21T18:32:07.839Z StartTime: 2015-10-21T18:32:07.839Z - startNumber 1 - last number 1 [video_encoder] Rep v1 UTC diff 2013 bigger than segment duration 0 - some frame where probably lost. Adjusting Generating MPD at 2015-10-21T18:32:07.839Z StartTime: 2015-10-21T18:32:07.839Z - startNumber 1 - last number 1 [video_encoder] Rep v1 UTC diff at segment close: 2076 is lower than cumulated segment duration 3000 (diff -924) - frame rate is probably not correct or frames were lost! Generating MPD at 2015-10-21T18:32:09.852Z StartTime: 2015-10-21T18:32:07.839Z - startNumber 1 - last number 3 Generating MPD at 2015-10-21T18:32:09.915Z StartTime: 2015-10-21T18:32:07.839Z - startNumber 1 - last number 4 Generating MPD at 2015-10-21T18:32:11.851Z ... ``` term2: ``` ➜ buildz git:(master) ✗ node node-gpac-dash/gpac-dash.js -segment-marker eods -chunk-media-segments [11:32:15.414] Runnning /Users/Nicholas/code/c++/gpac/buildz/node-gpac-dash/gpac-dash.js using /Users/Nicholas/.nvm/versions/node/v0.12.7/bin/node version v0.12.7 in /Users/Nicholas/code/c++/gpac/buildz [11:32:15.423] Server running on 127.0.0.1:8000 in low-latency mode [11:32:21.568] Request for file: output/dashcast.mpd at UTC 1445452341567 [11:32:21.582] Request for file: output/dashcast.mpd at UTC 1445452341582 [11:32:21.587] Request for file: output/v1_init_gpac.mp4 at UTC 1445452341587 [11:32:22.659] Request for file: output/v1_14_gpac.m4s at UTC 1445452342659 [11:32:22.766] File output/v1_14_gpac.m4s, sending mdat data from 0 to 5023274 in 107 ms (total_sent: 5023275) at utc 1445452342766 [11:32:22.769] File output/v1_14_gpac.m4s, sending mdat data from 0 to 237826 in 110 ms (total_sent: 5261102) at utc 1445452342769 ``` term3: ``` ➜ buildz git:(master) ✗ MP4Client http://127.0.0.1:8000/output/dashcast.mpd -opt Network:BufferLength=200 -opt DASH:LowLatency=chunk -opt DASH:UseServerUTC=no Using config file in /Users/Nicholas/.gpac directory System info: 16384 MB RAM - 8 cores Modules Found : 29 Loading GPAC Terminal Terminal Loaded in 119 ms Opening URL http://127.0.0.1:8000/output/dashcast.mpd Service Connected ``` The MP4Client window opens, but is black and unresponsive. The video encoder has some interesting warnings about frames being lost. The server also seems to transfer overlapping chunks of different sizes of the same file. The client prints no warnings or erros.
MP4Client freezes when trying to stream
https://api.github.com/repos/gpac/gpac/issues/294/comments
1
2015-10-21T18:36:36Z
2019-06-28T15:31:03Z
https://github.com/gpac/gpac/issues/294
112,652,392
294
[ "gpac", "gpac" ]
Versions affected: all latest versions (0.5.2 rev550 works) Using the following command prompt: ``` mp4box -noprog -dash 4000 -out c:\temp\testvideo\Manifest.mpd -profile "dashavc264:live" -sample-groups-traf -bs-switching no -logs all@info c:\temp\Video-und_H264_400kbps.mp4 ``` Tested with the following video (~27MB) https://www.dropbox.com/s/41igsa42s29oq9f/Video-und_H264_400kbps.mp4?dl=0 Output even with all@info produces just this: ``` [DASH] WARNING! DASH Live profile requested but no -segment-name using "%s_dash" by default DASH-ing file: 4.00s segments 4.00s fragments single sidx per segment Spliting segments at GOP boundaries DASHing file c:\temp\Video-und_H264_400kbps.mp4 ``` Hope this information is enough. Tested with a few of the 64bit nightly windows build versions and even a 32bit one. Crash report from windows does not seem to include any useful information.
mp4box crashes during DASH creation
https://api.github.com/repos/gpac/gpac/issues/293/comments
2
2015-10-21T12:02:32Z
2015-10-21T14:34:46Z
https://github.com/gpac/gpac/issues/293
112,572,036
293
[ "gpac", "gpac" ]
HI there, when I run MP4Client, I see: ``` ➜ buildz git:(master) ✗ MP4Client http://127.0.0.1:8000/output/dashcast.mpd -opt Network:BufferLength=200 -opt DASH:LowLatency=chunk -opt DASH:UseServerUTC=no Using config file in /Users/Nicholas/.gpac directory System info: 16384 MB RAM - 8 cores Modules Found : 29 Loading GPAC Terminal Terminal Loaded in 101 ms Opening URL http://127.0.0.1:8000/output/dashcast.mpd Service Connected [Core] Plugin FFMPEG decoder not found in 29 modules. [Codec] ODM1 ES1: Cannot find decoder for stream type MPEG-4 AVC|H264 Video Stream Setup Failure: Media Codec not found ➜ buildz git:(master) ✗ ffmpeg -hide_banner -codecs | grep h264 DEV.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_vda ) (encoders: libx264 libx264rgb ) ```
Cannot find decoder for stream type MPEG-4 AVC|H264 Video
https://api.github.com/repos/gpac/gpac/issues/292/comments
3
2015-10-20T23:50:08Z
2015-10-21T18:03:03Z
https://github.com/gpac/gpac/issues/292
112,483,452
292
[ "gpac", "gpac" ]
I am trying to use mp4box (through mkvtomp4) but mp4box crashes because of assertion failure. ``` error: failure: WARNING: NAL Unit type 0 not handled - adding Assertion failed: (prev_nalu_prefix_size==0), function gf_import_avc_h264, file media_tools/media_import.c, line 4761. ``` I am using `gpac` 0.5.2 on OSX 10.10.5 with - jpeg ✔ - libogg ✔ - libvorbis ✔ - ffmpeg ✔
mp4box crashes because of assertion failure
https://api.github.com/repos/gpac/gpac/issues/291/comments
15
2015-10-20T09:48:48Z
2015-11-18T18:17:43Z
https://github.com/gpac/gpac/issues/291
112,327,696
291
[ "gpac", "gpac" ]
https://gpac.wp.mines-telecom.fr/2012/02/01/dash-support/ I found MP4Box supports dash in above link. But the post is too old, and below command line can't work: MP4Box -mpd test.mpd [-url-template] [http://...]myfile.m3u8 What's correct command line in current version to convert m3u8 into mpd file? Thanks!
How to convert m3u8 into mpd file
https://api.github.com/repos/gpac/gpac/issues/290/comments
27
2015-10-20T07:33:40Z
2015-11-19T14:12:29Z
https://github.com/gpac/gpac/issues/290
112,304,794
290
[ "gpac", "gpac" ]
Hi, I am trying to compile a C++ code with libgpac but I am receiving this message: Undefined symbols for architecture x86_64: "gf_m2ts_demux_new()", referenced from: When I compile in C (.c) is fine, I don`t receive any error. What is the problem?
Undefined symbols for architecture x86_64: "gf_m2ts_demux_new()"
https://api.github.com/repos/gpac/gpac/issues/289/comments
6
2015-10-19T21:43:11Z
2015-10-22T00:36:42Z
https://github.com/gpac/gpac/issues/289
112,239,290
289
[ "gpac", "gpac" ]
I use MP4Box on Ubuntu 12.04 64-bits to repackage TS files into MP4 files like this: `$ MP4Box -add in.ts out.mp4` A problem occurs with files obtained from a specific source. After being repackaged, the audio gradually goes out of sync. At the beginning audio is in sync, but after 5-10 minutes it's out of sync by one second. The problem is present when files are played in smart TV media players, but not VLC, MPlayer etc. I have tried TV's from multiple different vendors, and the problem occurs on all of them. The problem does not occur if I use ffmpeg (0.8.17-4:0.8.17-0ubuntu0.12.04.1) from Ubuntu 12.04 repository, and repackage the files like this: `$ ffmpeg -i in.ts -vcodec copy -acodec copy out.mp4` ``` $ MP4Box -version MP4Box - GPAC version 0.5.2-DEV-rev719-g867374d-master GPAC Copyright (c) Telecom ParisTech 2000-2012 GPAC Configuration: --static-mp4box --use-zlib=no Features: GPAC_64_BITS GPAC_DISABLE_3D GPAC_DISABLE_SWF_IMPORT ```
Audio gradually goes out of sync when playing files repackaged with MP4Box
https://api.github.com/repos/gpac/gpac/issues/287/comments
9
2015-10-18T23:45:19Z
2018-01-12T21:22:21Z
https://github.com/gpac/gpac/issues/287
112,050,825
287
[ "gpac", "gpac" ]
Getting the following output when libx264 is installed and verified. Options: video source: pipe: video framerate: 24 video crop: 0x0 audio source: Configurations: id:v1 res:1280x720 vbr:1500000 Input #0, h264, from 'pipe:': Duration: N/A, bitrate: N/A Stream #0:0: Video: h264 (High), yuv420p, 1080x720, 24 fps, 24 tbr, 1200k tbn, 48 tbc AVCTX give frame duration of 1/48 - keeping requested rate 24, but this may result in unexpected behaviour. Press q or Q to exit... Read video frame 0 Read video frame 1 Output video codec libx264 not found Cannot open output video stream. Keyboard thread exit
"Output video codec libx264 not found" but it is installed
https://api.github.com/repos/gpac/gpac/issues/286/comments
7
2015-10-18T00:22:20Z
2019-06-28T15:29:53Z
https://github.com/gpac/gpac/issues/286
111,992,257
286
[ "gpac", "gpac" ]
When building dashcast against latest Github FFmpeg on native PPC Linux, these errors (shown below) occur. I think they are mostly because the latest FFmpeg in `libavutil/pixfmt.h` now declares `PIX_FMT_YUV420P` as part of an enum, as `AV_PIX_FMT_YUV420P`... Fixing this reveals another compilation error, possibly because the function `avcodec_get_frame_defaults()`isn't in FFmpeg any more. Does anyone know if these errors are trivial to fix by changing the declaration, and calling a replacement function, as per this link: https://lists.ffmpeg.org/pipermail/ffmpeg-cvslog/2013-December/071938.html ``` gcc gcc -O3 -Wall -fno-strict-aliasing -Wno-pointer-sign -DNDEBUG -DGPAC_HAVE_CONFIG_H -I"/home/john/source/ffmpegbuild/gpac" -fvisibility="hidden" -D_GNU_SOURCE -I"/home/john/source/ffmpegbuild/gpac/include" -I../../ -I/usr/local/include -DGPAC_USE_LIBAV -DDC_AUDIO_RESAMPLER -c -o video_encoder.o video_encoder.c video_encoder.c: In function ‘dc_video_encoder_open’: video_encoder.c:89:42: error: ‘PIX_FMT_YUV420P’ undeclared (first use in this function) video_output_file->codec_ctx->pix_fmt = PIX_FMT_YUV420P; ^ video_encoder.c:89:42: note: each undeclared identifier is reported only once for each function it appears in video_encoder.c: In function ‘dc_video_encoder_encode’: video_encoder.c:226:5: warning: ‘coded_frame’ is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:2878) [-Wdeprecated-declarations] video_codec_ctx->coded_frame->pts = video_codec_ctx->coded_frame->pkt_pts = pkt.pts; ^ video_encoder.c:226:5: warning: ‘coded_frame’ is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:2878) [-Wdeprecated-declarations] video_encoder.c:227:5: warning: ‘coded_frame’ is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:2878) [-Wdeprecated-declarations] video_codec_ctx->coded_frame->pkt_dts = pkt.dts; ^ video_encoder.c:228:5: warning: ‘coded_frame’ is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:2878) [-Wdeprecated-declarations] video_codec_ctx->coded_frame->key_frame = (pkt.flags & AV_PKT_FLAG_KEY) ? 1 : 0; ^ ../../config.mak:146: recipe for target 'video_encoder.o' failed make[2]: *** [video_encoder.o] Error 1 make[2]: Leaving directory '/home/john/source/ffmpegbuild/gpac/applications/dashcast' Makefile:55: recipe for target 'apps' failed make[1]: *** [apps] Error 2 make[1]: Leaving directory '/home/john/source/ffmpegbuild/gpac/applications' Makefile:9: recipe for target 'all' failed make: *** [all] Error 2 ```
dashcast not building against current FFmpeg?
https://api.github.com/repos/gpac/gpac/issues/285/comments
10
2015-10-14T19:08:19Z
2016-03-04T08:40:05Z
https://github.com/gpac/gpac/issues/285
111,469,172
285
[ "gpac", "gpac" ]
We generated transport streams using `MP42TS` and when we analysed them, we found PCR interval errors. This is where the interval between successive PCRs is greater than 40ms. This is a problem for us as we need to be DVB-compliant; the relevant requirement is test no 2.3a "PCR_repetition_error" in ETSI TR 101 290 v1.2.1. The tool has an option `-pcr-ms` which allows you to define the max interval - but even when set to 5 ms, the generated transport stream still has intervals of more than 40ms between PCRs. In the end we found a solution that worked: if we also specify the `-single-au` option, then the PCR interval is fixed. Is this what you would expect, or is it a bug?
PCR interval errors
https://api.github.com/repos/gpac/gpac/issues/284/comments
10
2015-10-14T16:15:02Z
2016-03-04T09:49:55Z
https://github.com/gpac/gpac/issues/284
111,434,140
284
[ "gpac", "gpac" ]
We're using `MP42TS` to create transport streams with a TEMI timeline embedded in the video pid. However, we have two additional requirements that do not appear to be supported: 1. Insert TEMI timeline into a PID carrying audio 2. Insert TEMI timeline into a PID carrying private PES data with no payload In both cases we want the TEMI descriptors to be inserted into the adaptation field of the TS packet header, as is done with the video case. Is this a feature that can be added?
Insert TEMI timeline into non-video PID
https://api.github.com/repos/gpac/gpac/issues/283/comments
17
2015-10-14T15:59:29Z
2019-06-28T15:28:51Z
https://github.com/gpac/gpac/issues/283
111,430,735
283
[ "gpac", "gpac" ]
Hi, Using: GPAC version 0.5.2-DEV-rev91-g0930dfa-master Please consider the content here: https://goo.gl/GsJ9Do Both source video files in Transcoded folder are imported for hvc1. However, if I try to generate On-demand content in the DASHed folder using e.g. MP4Box -dash 2000 -profile OnDemand -rap -frag-rap -url-template -out tos_720_HEVC_ondemand.mpd -segment-ext mp4 ../Transcoded/tos_288p_500k_H265_hvc.mp4 ../Transcoded/tos_432p_1000k_H265_hvc.mp4 2 issues: 1. The resultant codec is again hev1 and not hvc1 that we need. How can we get hvc1 as codec? If I DASH a single video using the command above, the codec is showed as hvc1; as soon as a second one is added, it goes back to hev1. 2. Also, there is a strange initialization segment generated (although MPD is not using it, understandably for On-demand content), and "bitstreamswitching" is flagged as true (even if for On-Demand I add: -bs-switching no, same behavior); I think none of this should be for On-Demand. Thanks,
Can't generate hvc1 DASH content
https://api.github.com/repos/gpac/gpac/issues/282/comments
1
2015-10-13T13:23:07Z
2015-10-13T13:26:52Z
https://github.com/gpac/gpac/issues/282
111,178,513
282
[ "gpac", "gpac" ]
Hi, We have Origin server supporting DASH HEVC 4k Streaming. However the gpac client doesn't play the stream very well, the video is corrupted, sometimes there are lags, you can see some images overlay of strange frames while playing. Not all content we go is able to play. Is there anyway to fix those issues or debug them?
DASH HEVC 4k Streaming
https://api.github.com/repos/gpac/gpac/issues/281/comments
36
2015-10-13T12:02:59Z
2015-12-01T16:42:26Z
https://github.com/gpac/gpac/issues/281
111,165,572
281
[ "gpac", "gpac" ]
Hello, I was successfully compiling GPAC on Windows 7 so far but today I pulled the changes from the last 2 weeks and I get a linking error: ` 1>------ Rebuild All started: Project: libgpac_dll, Configuration: Debug Win32 ------ 1> export.cpp 1>libgpac_dll.obj : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification 1> Creating library ../../bin/Win32/Debug/libgpac.lib and object ../../bin/Win32/Debug/libgpac.exp 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _ispe_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _ispe_New 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _rloc_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _rloc_New 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _irot_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _irot_New 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _ipco_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _ipco_New 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _iprp_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _iprp_New 1>libgpac_static.lib(meta.obj) : error LNK2019: unresolved external symbol _ipma_New referenced in function _meta_process_image_properties 1>libgpac_static.lib(box_funcs.obj) : error LNK2001: unresolved external symbol _ipma_New 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ispe_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ispe_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ispe_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ispe_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _colr_New referenced in function _gf_isom_box_new 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _colr_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _colr_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _colr_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _colr_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _pixi_New referenced in function _gf_isom_box_new 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _pixi_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _pixi_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _pixi_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _pixi_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _rloc_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _rloc_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _rloc_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _rloc_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _irot_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _irot_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _irot_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _irot_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipco_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipco_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipco_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipco_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _iprp_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _iprp_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _iprp_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _iprp_Size referenced in function _gf_isom_box_size_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipma_del referenced in function _gf_isom_box_del 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipma_Read referenced in function _gf_isom_box_read 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipma_Write referenced in function _gf_isom_box_write_listing 1>libgpac_static.lib(box_funcs.obj) : error LNK2019: unresolved external symbol _ipma_Size referenced in function _gf_isom_box_size_listing 1>../../bin/Win32\Debug/libgpac.dll : fatal error LNK1120: 40 unresolved externals ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ========== ` I have recompiled all the modules and libgac. The only error I get is when I compile libgpac_dll.
Link Error when compiling on Windows 7
https://api.github.com/repos/gpac/gpac/issues/280/comments
4
2015-10-13T11:31:39Z
2015-10-27T17:03:42Z
https://github.com/gpac/gpac/issues/280
111,161,257
280
[ "gpac", "gpac" ]
Hello I have found a strange bug in the latest version ( rev709-g5bf4a71-master ) in MP4Box. It segfaults on Linux when trying to get info from a .TS file. MP4Box -info -logs all@debug tmf_0_0.ts [MPEG-2 TS] TS Packet 1 PID 0 CC 0 Encrypted 0 [MPEG-2 TS] Creating table 0 1 [MPEG-2 TS] TS Packet 2 PID 4096 CC 0 Encrypted 0 [MPEG-2 TS] Creating table 2 1 [MPEG-2 TS] PMT Found or updated stream_type :27 [MPEG-2 TS] Setting pes framing mode of PID 256 to 0 stream_type :15 [MPEG-2 TS] Setting pes framing mode of PID 257 to 0 stream_type :21 [MPEG-2 TS] Setting pes framing mode of PID 258 to 0 [MPEG-2 TS] Setting pes framing mode of PID 256 to 3 [MPEG-2 TS] Setting pes framing mode of PID 257 to 3 [MPEG-2 TS] Setting pes framing mode of PID 258 to 3 [MPEG-2 TS] TS Packet 3 PID 258 CC 0 Encrypted 0 [MPEG-2 TS] PID 258: Got PES packet len 238 [MPEG-2 TS] TS Packet 4 PID 258 CC 1 Encrypted 0 [MPEG-2 TS] PID 258: Adaptation Field found: Discontinuity 0 - RAP 0 - PCR: 0 [MPEG-2 TS] PID 258 Got PES header PTS 0 Segmentation fault http://cdn.labs.h3.se/rene/gpac_problem_2/tmf_0_0.ts
GPAC segfault, while trying to read info from .TS file
https://api.github.com/repos/gpac/gpac/issues/279/comments
2
2015-10-12T13:27:05Z
2015-10-13T09:24:56Z
https://github.com/gpac/gpac/issues/279
110,974,936
279
[ "gpac", "gpac" ]
Hey there, I am trying to compile https://launchpad.net/ubuntu/+archive/primary/+files/gpac_0.5.0+svn4288~dfsg1.orig.tar.bz2, but I am running into: ``` ... Xiph Vorbis: system Xiph Theora: system A52 (AC3): no OpenSVCDecoder: no Freenect: no Creating config.mak config.h is unchanged Done - type 'make help' for make info, 'make' to build make[1]: Entering directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig' make -C src all make[2]: Entering directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/src' Linking libgpac mv ../bin/gcc/libgpac.so ../bin/gcc/libgpac.so.2.0.0 ln -sf libgpac.so.2.0.0 ../bin/gcc/libgpac.so.2 ln -sf libgpac.so.2.0.0 ../bin/gcc/libgpac.so make[2]: Leaving directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/src' make -C applications all make[2]: Entering directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications' set -e; for i in mp4client mp4box mp42ts ; do make -C $i all; done make[3]: Entering directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications/mp4client' make[3]: Leaving directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications/mp4client' make[3]: Entering directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications/mp4box' main.o: In function `HintFile': main.c:(.text+0x605): undefined reference to `gf_isom_set_nalu_extract_mode' main.o: In function `mp4boxMain': main.c:(.text+0x41bc): undefined reference to `gf_dasher_segment_files' main.c:(.text+0x41df): undefined reference to `gf_dasher_next_update_time' main.c:(.text+0x4220): undefined reference to `gf_dasher_next_update_time' main.c:(.text+0x4365): undefined reference to `gf_dasher_next_update_time' main.c:(.text+0x4b6d): undefined reference to `gf_url_get_resource_name' main.c:(.text+0x5da1): undefined reference to `gf_move_file' main.c:(.text+0x5f6f): undefined reference to `gf_move_file' main.c:(.text+0x6830): undefined reference to `gf_cfg_set_filename' main.c:(.text+0x949c): undefined reference to `gf_isom_set_output_buffering' filedump.o: In function `dump_nalu': filedump.c:(.text+0x179a): undefined reference to `gf_avc_get_pps_info' filedump.o: In function `dump_file_nal': filedump.c:(.text+0x3eaa): undefined reference to `gf_isom_get_nalu_extract_mode' filedump.c:(.text+0x3f11): undefined reference to `gf_isom_hevc_config_get' filedump.c:(.text+0x43ba): undefined reference to `gf_isom_get_reference_ID' filedump.c:(.text+0x4423): undefined reference to `gf_isom_set_nalu_extract_mode' filedump.c:(.text+0x4666): undefined reference to `gf_isom_set_nalu_extract_mode' filedump.o: In function `DumpTrackInfo': filedump.c:(.text+0x6a23): undefined reference to `gf_isom_hevc_config_get' filedump.c:(.text+0x6bd7): undefined reference to `gf_odf_hevc_cfg_del' filedump.o: In function `DumpMovieInfo': filedump.c:(.text+0x7e91): undefined reference to `gf_isom_get_fragments_count' filedump.c:(.text+0x7e9e): undefined reference to `gf_isom_get_fragments_count' filedump.c:(.text+0x7ea9): undefined reference to `gf_isom_get_fragmented_duration' fileimport.o: In function `import_file': fileimport.c:(.text+0x1753): undefined reference to `gf_isom_set_media_timescale' fileimport.c:(.text+0x178e): undefined reference to `gf_isom_set_media_timescale' fileimport.c:(.text+0x18a3): undefined reference to `gf_isom_set_composition_offset_mode' fileimport.c:(.text+0x18b8): undefined reference to `gf_isom_get_avc_svc_type' fileimport.c:(.text+0x196e): undefined reference to `gf_isom_rewrite_track_dependencies' fileimport.c:(.text+0x1a80): undefined reference to `gf_url_get_resource_name' fileimport.c:(.text+0x1fa8): undefined reference to `gf_media_split_svc' fileimport.c:(.text+0x2161): undefined reference to `gf_isom_set_composition_offset_mode' fileimport.c:(.text+0x2175): undefined reference to `gf_isom_get_avc_svc_type' fileimport.c:(.text+0x21f8): undefined reference to `gf_url_get_resource_name' fileimport.c:(.text+0x246d): undefined reference to `gf_media_merge_svc' fileimport.o: In function `cat_isomedia_file': fileimport.c:(.text+0x5002): undefined reference to `gf_isom_get_track_original_id' fileimport.c:(.text+0x5b73): undefined reference to `gf_isom_set_media_timescale' collect2: ld returned 1 exit status make[3]: *** [MP4Box] Error 1 make[3]: Leaving directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications/mp4box' make[2]: *** [apps] Error 2 make[2]: Leaving directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig/applications' make[1]: *** [all] Error 2 make[1]: Leaving directory `/srv/current/deps/build/gpac/gpac-0.5.0+svn4288~dfsg1.orig' make: *** [gpac] Error 2 make: Leaving directory `/srv/current/deps' ``` Do you have any pointers? Any help is greatly appreciated. Kind regards, Tim
Problem compiling Gpac on Ubuntu 14.04 Trusty 64bit
https://api.github.com/repos/gpac/gpac/issues/278/comments
4
2015-10-12T12:28:55Z
2015-10-13T08:58:07Z
https://github.com/gpac/gpac/issues/278
110,964,732
278
[ "gpac", "gpac" ]
Hello! I'm working on an altered version of mp4client player to play multiple streams of the same video content. A 3rd party app allows me to manually select the streams. Everything works fine and as intended when I run it locally, but when I host the content on a server, the player automatically switches to the last stream in the list and locks on it. If I request a change, the player switches to the selected stream for a second and then switches back the previous stream: ![example](https://cloud.githubusercontent.com/assets/9872810/10427713/ca75e800-70e3-11e5-904a-f9be40556cfa.PNG) I cannot find the reason for this. Do you know what might be causing the issue? I have generated the content with mp4box and I have not found any issues with the MPD. I'm using node.js to generate the server.
Problems with stream switching
https://api.github.com/repos/gpac/gpac/issues/277/comments
2
2015-10-12T12:22:44Z
2015-10-12T17:10:28Z
https://github.com/gpac/gpac/issues/277
110,963,347
277
[ "gpac", "gpac" ]
Hi, I am building GPAC for IOS, when I follow the rules in README.text. I have already finished first five steps. When following step 6: 6) Compile GPAC: execute the "gpac/build/xcode/generate_ios.sh" script. The script checks that all files have been compiled, print an error message if needed. Otherwise it generats a .tar.gz archive into the gpac/bin/iOS directory. There contains error(shown in the picture): <img width="570" alt="error" src="https://cloud.githubusercontent.com/assets/14800803/10424128/fee1dd54-70fe-11e5-9317-eedd4d2f189f.png"> Could you tell me how to solve this problem? Best regards Zihan suo
error occurs when building GPAC for IOS
https://api.github.com/repos/gpac/gpac/issues/276/comments
2
2015-10-12T08:34:31Z
2016-03-04T14:49:50Z
https://github.com/gpac/gpac/issues/276
110,929,611
276
[ "gpac", "gpac" ]
I am trying to build the GPAC android edition in Windows system. However, according to the build/android/readme file, the command lines are not suitable to windows system. Could you help to solve the problem? Thanks.
How to build GPAC android edition in Windows system
https://api.github.com/repos/gpac/gpac/issues/275/comments
3
2015-10-11T05:34:26Z
2019-03-30T15:04:41Z
https://github.com/gpac/gpac/issues/275
110,835,911
275
[ "gpac", "gpac" ]
I'm using MP4Box to DASH an MP4 that contains muxed audio and video. Dash.js doesn't support muxed content, so apparently the inputs must take in video and audio separately. These are the commands I'm using: ``` ffmpeg -i video.mp4 -r 24 -g 72 -c:v libx264 -c:a libvo_aacenc -ar 44100 -ac 1 intermediate.mp4 MP4Box -dash 10000 -profile dashavc264:onDemand intermediate.mp4#video intermediate.mp4#audio ``` I'm getting the error: `[DASH]: None of the input types are supported for DASHing - nothing to do` Using just one input `intermediate.mp4` results in a successful DASH, but due to a multiplexed representation, it'll fail to play with Dash.js. Is this a syntax issue or an issue with the input encoding? Using version 0.5.1-DEV-rev4065.
#video and #audio input suffix not working
https://api.github.com/repos/gpac/gpac/issues/273/comments
2
2015-10-09T05:19:16Z
2015-10-09T09:00:19Z
https://github.com/gpac/gpac/issues/273
110,588,708
273
[ "gpac", "gpac" ]
It seems that if i specify -lang eng in the command sometimes it will not change the language of the track. For example if i do mp4box -lang fr '.\Avengers Age of Ultron(2015).mp4' on a file that has eng tagged stream it will not change it to fr it will stay at eng. it seems that it might be when you go between a 2 letter code and a 3 letter code it will not make the change.
language command does not always work
https://api.github.com/repos/gpac/gpac/issues/272/comments
5
2015-10-08T13:08:29Z
2015-11-16T15:07:30Z
https://github.com/gpac/gpac/issues/272
110,446,674
272
[ "gpac", "gpac" ]
The expected mimeType value for text streams is `application/mp4`. For detailed rationale, see discussion in https://github.com/google/ExoPlayer/issues/689
mp4box incorrectly marks subtitle streams as video/mp4 when generating DASH
https://api.github.com/repos/gpac/gpac/issues/271/comments
5
2015-10-07T07:56:03Z
2015-10-07T08:58:46Z
https://github.com/gpac/gpac/issues/271
110,170,105
271
[ "gpac", "gpac" ]
when compiling the file, i notice that "gpac/revision.h" is not found, could you tell me where I can download this??
https://api.github.com/repos/gpac/gpac/issues/270/comments
6
2015-10-05T08:25:08Z
2015-10-30T09:54:20Z
https://github.com/gpac/gpac/issues/270
109,751,111
270
[ "gpac", "gpac" ]
I have Windows 10 64-bit and am using 64-bit builds of mp4box Builds after rev673 pop up error box with the message "mp4box.exe has stopped working" when extracting video from an mp4 file. I'm wondering if this has to do with the reduced file size of mp4box.exe. In rev673 the file size of mp4box.exe was ~512kb, while in the newer revisions the file size of mp4box.exe is ~111kb. Is an extra support file required, or a different version of the mscvcr runtime dll? Thanks.
"mp4box.exe has stopped working" popup
https://api.github.com/repos/gpac/gpac/issues/269/comments
4
2015-10-02T18:02:10Z
2015-10-03T18:45:54Z
https://github.com/gpac/gpac/issues/269
109,541,181
269
[ "gpac", "gpac" ]
Hello, Is it possible to use GPAC apps to capture the live multicast stream to MPEG-DASH files directly, on the fly? I tried to use DashCast application and MP4Box wit "grab-ts" otpion but I was able to capture the stream to single file. I wonder If there is a way to save it into DASH format directly. Thank you, Martin
Capture live multicast stream to MPEG-DASH files
https://api.github.com/repos/gpac/gpac/issues/268/comments
1
2015-10-02T11:28:35Z
2016-03-04T08:40:05Z
https://github.com/gpac/gpac/issues/268
109,474,917
268
[ "gpac", "gpac" ]
Hi gpac team, This is a question (from someone new to DASH) rather than an issue. I'm using MP4Box to package DASH for a customer who is developing an iOS app to stream DASH + WVM + Google iOS WV SDK with a native player. These encrypted DASH streams are playing out fine on Chrome Desktop and Android, but on iOS (in the above context) playout is failing with this message - "Cannot parse version 2 of Sidx". This is triggered in the Google WV library - https://github.com/google/universal-dash-transmuxer/blob/master/library/dash/sidx_contents.cc - and (as I'm sure you are aware) is related to the version of the sidx (SegmentIndexBox). I'm having a separate discussion with the developer of the universal-dash-transmuxer who is being very helpful, and is looking at potentially updating the code. But in the meantime, (and this is my question for your team), when I'm using MP4Box to package to DASH are there ways in which I can affect the value of the sidx version? If I could easily generate DASH with either sidx version 0 or version 2 that would be extremely useful. I can't see a specific MP4Box param for this - I'm thinking that perhaps there might be a particular combination of settings that inform this value? Many thanks.
Can I use MP4Box to affect sidx version?
https://api.github.com/repos/gpac/gpac/issues/267/comments
1
2015-10-02T07:42:16Z
2015-11-16T12:47:45Z
https://github.com/gpac/gpac/issues/267
109,443,538
267
[ "gpac", "gpac" ]
I hope this is the right place to ask about this. I'm trying to play a video that I've CENC-encrypted using MP4box with these options: ``` MP4Box -crypt drm_file_gpac_clear.xml BigBuckBunny.mp4 -out BigBuckBunny_cenc.mp4 ``` Where the XML file specifies clearKey encryption. It's taken from GPAC's website https://gpac.wp.mines-telecom.fr/mp4box/encryption/common-encryption/ ``` <?xml version="1.0" encoding="UTF-8"?> <GPACDRM type="CENC AES-CTR"> <!-- example for GPAC 'clear' DRM System - keys are listed after the content and UL follows The BS element from NHML syntax is used to describe what needs to be written in the PSSH box. In this example, the PSSH block contains: 128 bit system ID key IDs count (2) on 32 bits two key IDs on 128 bits each 8 byte string prefixed with a length size on 8 bits two keys of 128 bits each --> <DRMInfo type="pssh" version="1" cypherOffset="9" cypherKey="0x6770616363656E6364726D746F6F6C31" cypherIV="0x00000000000000000000000000000001"> <BS ID128="0x6770616363656E6364726D746F6F6C31"/> <BS value="2" bits="32"/> <BS ID128="0x279926496a7f5d25da69f2b3b2799a7f"/> <BS ID128="0x676cb88f302d10227992649885984045"/> <BS bits="8" string="CID=Toto"/> <BS ID128="0xccc0f2b3b279926496a7f5d25da692f6"/> <BS ID128="0xccc0f2b3b279926496a7f5d25da692d6"/> </DRMInfo> <CrypTrack trackID="1" IsEncrypted="1" IV_size="16" first_IV="0x0a610676cb88f302d10ac8bc66e039ed" saiSavedBox="senc"> <key KID="0x279926496a7f5d25da69f2b3b2799a7f" value="0xccc0f2b3b279926496a7f5d25da692f6"/> </CrypTrack> </GPACDRM> ``` To play this back, I have an HTML file which includes a video tag that specifies the encrypted file: ``` <video autoplay id="video1" controls src="BigBuckBunny_cenc.mp4" type="video/mp4"></video> ``` And some attached JS: ``` var KEY = new Uint8Array([ 0xcc, 0xc0, 0xf2, 0xb3, 0xb2, 0x79, 0x92, 0x64, // this is key for MP4 file 0x96, 0xa7, 0xf5, 0xd2, 0x5d, 0xa6, 0x92, 0xf6 // encrypted with drm_file_gpac_clear.xml ]); var config = [ { initDataType: "cenc", videoType: "video/mp4", } ]; var video = document.getElementById('video1'); video.addEventListener('encrypted', handleEncrypted, false); ``` My problem is that the 'encrypted' event isn't fired. This plays fine if I put an unencrypted file in place of the encrypted one, and it also plays fine if I substitute a WEBM file (from http://simpl.info/eme/clearkey/ ) and change the key and config accordingly ("view page source" on that URL for the details). So it will play back an encrypted file (in this case the 'encrypted' event is fired, of course), but not one I've encrypted with MP4box. Also, when I play back the encrypted file, the unencrypted audio track plays OK; but the video is blank. I've tried it in IE 11.0.9600.18036, Firefox 41.0, Chrome 45.0.2454.93 m and Chrome 47.0.2516.0 canary (64-bit). I had a look at the MP4 file with MP4 Explorer, and it has the boxes I've been told to expect, such as encv, sinf and schm. I've only been trying to learn about CENC during the last few weeks so this is all comparatively new, and I may have made some obvious mistake. If anyone can help, I'd be grateful for any advice. Thanks!
Can I play back video encrypted with MP4box using the HTML5 <video> tag?
https://api.github.com/repos/gpac/gpac/issues/265/comments
9
2015-09-29T22:16:38Z
2016-10-09T22:01:19Z
https://github.com/gpac/gpac/issues/265
108,971,234
265
[ "gpac", "gpac" ]
The crashes are not 100% reproducible even with the same data set - sometimes it actually finishes execution successfully. Most times, the Windows crash dialog pops up. Visual Studio informs me that the error is: ``` Unhandled exception at 0x00007FF88401A28C (ntdll.dll) in mp4box.exe: 0xC0000374: A heap has been corrupted (parameters: 0x00007FF884072180). ``` Command: `mp4box -dash-strict 4000 -out out\Manifest.mpd -profile "dashavc264:live" -sample-groups-traf -bs-switching no sintel.mp4 sintel-288-400k.mp4` My input files: https://mega.nz/#!EkB2HBQQ!v489_PESs0ITPQAszNBZvtC0x6XTDVvRNV6661kO0d0 Tested with MP4Box - GPAC version 0.5.2-DEV-rev679-g0fd69e0-master.
mp4box crashes during dashing
https://api.github.com/repos/gpac/gpac/issues/264/comments
1
2015-09-29T08:14:14Z
2015-09-29T09:48:37Z
https://github.com/gpac/gpac/issues/264
108,816,405
264
[ "gpac", "gpac" ]
I have multiple representations, not all with the same sample aspect ratio but all with display aspect ratio 16:9 (as verified by FFmpeg). I would thus expect that the `AdaptationSet@par` attribute generated by mp4box be `16:9`, since according to the DASH specification, it should take into account the sample aspect ratio. However, the reality is that the value of this attribute is the picture aspect ratio from the last representation, without taking the sample aspect ratio into account. FFmpeg output for this stream, showing example sar/par and picture size: ``` Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv), 852x480 [SAR 640:639 DAR 16:9], 1157 kb/s, 23.98 fps, 23.98 tbr, 2997 tbn, 47.95 tbc (default) ``` Manifest contents: ``` <AdaptationSet segmentAlignment="true" maxWidth="852" maxHeight="480" maxFrameRate="2997/125" par="852:480" lang="und"> <Representation id="1" mimeType="video/mp4" codecs="avc1.640015" width="512" height="288" frameRate="2997/125" sar="1:1" startWithSAP="1" bandwidth="391676"> <SegmentTemplate timescale="2997" media="Unbroken_Mismatching_Aspect_and_Resolution-288-400k_dash$Number$.m4s" startNumber="1" duration="11748" initialization="Unbroken_Mismatching_Aspect_and_Resolution-288-400k_dashinit.mp4" /> </Representation> <Representation id="2" mimeType="video/mp4" codecs="avc1.64001e" width="640" height="360" frameRate="2997/125" sar="1:1" startWithSAP="1" bandwidth="775040"> <SegmentTemplate timescale="2997" media="Unbroken_Mismatching_Aspect_and_Resolution-360-800k_dash$Number$.m4s" startNumber="1" duration="11748" initialization="Unbroken_Mismatching_Aspect_and_Resolution-360-800k_dashinit.mp4" /> </Representation> <Representation id="3" mimeType="video/mp4" codecs="avc1.64001e" width="852" height="480" frameRate="2997/125" sar="640:639" startWithSAP="1" bandwidth="1159419"> <SegmentTemplate timescale="2997" media="Unbroken_Mismatching_Aspect_and_Resolution-480-1200k_dash$Number$.m4s" startNumber="1" duration="11748" initialization="Unbroken_Mismatching_Aspect_and_Resolution-480-1200k_dashinit.mp4" /> </Representation> </AdaptationSet> ``` Tested with mp4box rev550.
"par" attribute value calculation does not consider sample aspect ratio
https://api.github.com/repos/gpac/gpac/issues/263/comments
9
2015-09-29T07:02:35Z
2015-09-29T12:26:30Z
https://github.com/gpac/gpac/issues/263
108,807,089
263
[ "gpac", "gpac" ]
Hello, Who can give me a guideline about the title. Because the segments that pruduct by Dashcast with the -live options, can not played by the dash.js player. Thanks so much. JamesXu
DashCast transcode a live stream in multiple qualities on windows7 64bit,and played these stream in the DASH.js.
https://api.github.com/repos/gpac/gpac/issues/262/comments
4
2015-09-25T09:02:14Z
2016-03-04T08:40:05Z
https://github.com/gpac/gpac/issues/262
108,288,522
262
[ "gpac", "gpac" ]
removing the longest track does not recompute movie duration
https://api.github.com/repos/gpac/gpac/issues/261/comments
1
2015-09-24T11:11:39Z
2016-10-09T22:16:59Z
https://github.com/gpac/gpac/issues/261
108,110,003
261
[ "gpac", "gpac" ]
Hello, I found that the duration is strange, when I use the DashCast in the windows. After I use this command dashcast -vf dshow -vres 1280x720 -vfr 24 -v video="screen-capture-recorder" -npts -low-delay -time-shift -1 -live -mpd-refresh 2 -seg-dur 2000 , the duration in the MPD file is 48; After I use this command dashcast -vf dshow -vres 1280x720 -vfr 24 -v video="screen-capture-recorder" -npts -low-delay -time-shift -1 -live -mpd-refresh 2 -seg-dur 1000 , the duration in the MPD file is 24; Is that right? JamesXu.
DashCast live model in Windows7 64bit. Is the duration right?
https://api.github.com/repos/gpac/gpac/issues/260/comments
0
2015-09-24T08:16:06Z
2016-03-04T08:40:05Z
https://github.com/gpac/gpac/issues/260
108,081,819
260
[ "gpac", "gpac" ]
Hi, Can GPAC be built on Fedora 21? If yes, how to manage the mozilla js 185 dependency? Fedora version: Fedora release 21 (Twenty One) .configure: ./configure /bin/svnversion svn: E155036: The working copy at 'gpac' is too old (format 10) to work with client version '1.8.11 (r1643975)' (expects format 31). You need to upgrade the working copy first. *\* System Configuration Install prefix: /usr/local Source path: gpac C compiler: gcc C++ compiler: g++ make: make CPU: x86_64 Big Endian: no GPAC 0.5.1-DEV rev Core Configuration debug version: yes GProf enabled: no Static build enabled: no Memory tracking enabled: no Use standard memory allocator: no Fixed-Point Version: no IPV6 Support: yes Static Modules: no Detected libraries zlib: system OSS Audio: yes ALSA Audio: yes Jack Audio: no PulseAudio Audio: no DirectFB support: no X11 Shared Memory support: yes (path: /usr/X11R6) X11 XVideo support: no SDL Support: no OpenGL support: yes TinyGL support: no OpenSSL support: yes Mozilla XUL/GECKO support: no DVB Support: yes XMLRPC Support: no wxWidgets support: no Extra Libraries used SpiderMonkey: local FreeType: system JPEG: system OpenJPEG: system PNG: system MAD: system FAAD: no XVID: no FFMPEG: no Xiph OGG: system Platinum UPnP: no AVCap: no Xiph Vorbis: system Xiph Theora: no A52 (AC3): no OpenSVCDecoder: no OpenHEVCDecoder: no MMT: yes Freenect: no Creating config.mak Done - type 'make help' for make info, 'make' to build make: CC mcrypt/ctr.c CC mcrypt/des.c CC mcrypt/ecb.c CC mcrypt/g_crypt.c CC mcrypt/ncfb.c CC mcrypt/nofb.c CC mcrypt/ofb.c CC mcrypt/rijndael-128.c CC mcrypt/rijndael-192.c CC mcrypt/rijndael-256.c CC mcrypt/stream.c CC mcrypt/tripledes.c OBJS utils/os_divers.o utils/list.o utils/bitstream.o utils/error.o utils/alloc.o utils/url.o utils/configfile.o utils/sha1.o utils/base_encoding.o utils/os_net.o utils/os_thread.o utils/os_config_init.o utils/cache.o utils/downloader.o utils/xml_parser.o utils/utf.o utils/token.o utils/color.o utils/os_module.o utils/math.o utils/path2d.o utils/path2d_stroker.o utils/module.o utils/uni_bidi.o utils/ringbuffer.o utils/unicode.o utils/map.o mcrypt/cbc.o mcrypt/cfb.o mcrypt/ctr.o mcrypt/des.o mcrypt/ecb.o mcrypt/g_crypt.o mcrypt/ncfb.o mcrypt/nofb.o mcrypt/ofb.o mcrypt/rijndael-128.o mcrypt/rijndael-192.o mcrypt/rijndael-256.o mcrypt/stream.o mcrypt/tripledes.o scenegraph/base_scenegraph.o scenegraph/mpeg4_animators.o scenegraph/commands.o scenegraph/mpeg4_nodes.o scenegraph/mpeg4_valuator.o scenegraph/vrml_interpolators.o scenegraph/vrml_proto.o scenegraph/vrml_route.o scenegraph/vrml_script.o scenegraph/vrml_smjs.o scenegraph/vrml_tools.o scenegraph/x3d_nodes.o scenegraph/svg_attributes.o scenegraph/svg_types.o scenegraph/svg_smjs.o scenegraph/smil_anim.o scenegraph/smil_timing.o scenegraph/svg_properties.o scenegraph/dom_events.o scenegraph/dom_smjs.o scenegraph/xbl_process.o scenegraph/xml_ns.o scenegraph/html5_media_smjs.o scenegraph/html5_mse_smjs.o scenegraph/webvtt_smjs.o ietf/rtcp.o ietf/rtp.o ietf/rtp_packetizer.o ietf/rtp_pck_3gpp.o ietf/rtp_pck_mpeg12.o ietf/rtp_pck_mpeg4.o ietf/rtsp_command.o ietf/rtsp_common.o ietf/rtsp_response.o ietf/rtsp_session.o ietf/sdp.o ietf/rtp_depacketizer.o ietf/rtp_streamer.o bifs/arith_decoder.o bifs/bifs_codec.o bifs/bifs_node_tables.o bifs/com_dec.o bifs/com_enc.o bifs/conditional.o bifs/field_decode.o bifs/field_encode.o bifs/memory_decoder.o bifs/predictive_mffield.o bifs/quantize.o bifs/script_dec.o bifs/script_enc.o bifs/unquantize.o isomedia/avc_ext.o isomedia/box_code_3gpp.o isomedia/box_code_apple.o isomedia/box_code_mmt.o isomedia/box_code_base.o isomedia/box_code_drm.o isomedia/box_code_meta.o isomedia/box_dump.o isomedia/box_funcs.o isomedia/data_map.o isomedia/drm_sample.o isomedia/isom_intern.o isomedia/isom_read.o isomedia/isom_store.o isomedia/isom_write.o isomedia/media.o isomedia/media_odf.o isomedia/meta.o isomedia/movie_fragments.o isomedia/sample_descs.o isomedia/stbl_read.o isomedia/stbl_write.o isomedia/track.o isomedia/tx3g.o isomedia/hint_track.o isomedia/hinting.o isomedia/box_code_adobe.o isomedia/ttml.o odf/desc_private.o odf/descriptors.o odf/odf_code.o odf/odf_codec.o odf/odf_command.o odf/qos.o odf/slc.o odf/ipmpx_code.o odf/oci_codec.o odf/ipmpx_dump.o odf/ipmpx_parse.o odf/odf_dump.o odf/odf_parse.o media_tools/isom_tools.o media_tools/dash_segmenter.o media_tools/av_parsers.o media_tools/img.o media_tools/media_import.o media_tools/mpegts.o media_tools/m3u8.o media_tools/mpd.o media_tools/dash_client.o media_tools/media_export.o media_tools/m2ts_mux.o media_tools/filestreamer.o media_tools/avilib.o media_tools/mpeg2_ps.o media_tools/gpac_ogg.o media_tools/ismacryp.o media_tools/isom_hinter.o media_tools/saf.o media_tools/vobsub.o media_tools/text_import.o media_tools/html5_media.o media_tools/html5_mse.o media_tools/webvtt.o scene_manager/scene_manager.o scene_manager/text_to_bifs.o scene_manager/loader_bt.o scene_manager/loader_xmt.o scene_manager/loader_isom.o scene_manager/loader_qt.o scene_manager/loader_svg.o scene_manager/swf_parse.o scene_manager/swf_bifs.o scene_manager/swf_svg.o scene_manager/scene_dump.o scene_manager/scene_stats.o scene_manager/scene_engine.o scene_manager/encode_isom.o terminal/channel.o terminal/clock.o terminal/decoder.o terminal/term_node_init.o terminal/input_sensor.o terminal/media_control.o terminal/media_manager.o terminal/media_memory.o terminal/media_object.o terminal/media_sensor.o terminal/mpeg4_inline.o terminal/network_service.o terminal/object_browser.o terminal/object_manager.o terminal/scene.o terminal/terminal.o terminal/svg_external.o compositor/audio_input.o compositor/audio_mixer.o compositor/audio_render.o compositor/bindable.o compositor/camera.o compositor/compositor.o compositor/compositor_2d.o compositor/compositor_3d.o compositor/compositor_node_init.o compositor/drawable.o compositor/events.o compositor/font_engine.o compositor/hc_flash_shape.o compositor/hardcoded_protos.o compositor/mesh.o compositor/mesh_collide.o compositor/mesh_tesselate.o compositor/mpeg4_animstream.o compositor/mpeg4_audio.o compositor/mpeg4_background.o compositor/mpeg4_background2d.o compositor/mpeg4_bitmap.o compositor/mpeg4_composite.o compositor/mpeg4_form.o compositor/mpeg4_geometry_2d.o compositor/mpeg4_geometry_3d.o compositor/mpeg4_geometry_ifs2d.o compositor/mpeg4_geometry_ils2d.o compositor/mpeg4_gradients.o compositor/mpeg4_grouping.o compositor/mpeg4_grouping_2d.o compositor/mpeg4_grouping_3d.o compositor/mpeg4_layer_2d.o compositor/mpeg4_layer_3d.o compositor/mpeg4_layout.o compositor/mpeg4_lighting.o compositor/mpeg4_path_layout.o compositor/mpeg4_sensors.o compositor/mpeg4_sound.o compositor/mpeg4_text.o compositor/mpeg4_textures.o compositor/mpeg4_timesensor.o compositor/mpeg4_viewport.o compositor/navigate.o compositor/offscreen_cache.o compositor/svg_base.o compositor/svg_filters.o compositor/svg_font.o compositor/svg_geometry.o compositor/svg_grouping.o compositor/svg_media.o compositor/svg_paint_servers.o compositor/svg_text.o compositor/texturing.o compositor/texturing_gl.o compositor/visual_manager.o compositor/visual_manager_2d.o compositor/visual_manager_2d_draw.o compositor/visual_manager_3d.o compositor/visual_manager_3d_gl.o compositor/x3d_geometry.o laser/lsr_enc.o laser/lsr_dec.o laser/lsr_tables.o LIBS -lm -L/usr/local/lib -lGL -lGLU -lX11 -L../extra_lib/lib/gcc -lz -lssl -lcrypto -ljs -ljpeg -lpng -lpthread -ldl scenegraph/vrml_smjs.o: In function gf_js_add_root': gpac/src/scenegraph/vrml_smjs.c:60: undefined reference toJS_AddRoot' scenegraph/vrml_smjs.o: In function gf_js_add_named_root': gpac/src/scenegraph/vrml_smjs.c:83: undefined reference toJS_AddNamedRoot' scenegraph/vrml_smjs.o: In function gf_js_remove_root': gpac/src/scenegraph/vrml_smjs.c:244: undefined reference toJS_RemoveRoot' scenegraph/vrml_smjs.o: In function JSPrint': gpac/src/scenegraph/vrml_smjs.c:588: undefined reference toJS_GetStringBytes' scenegraph/vrml_smjs.o: In function getCurrentSpeed': gpac/src/scenegraph/vrml_smjs.c:616: undefined reference toJS_NewDouble' scenegraph/vrml_smjs.o: In function getCurrentFrameRate': gpac/src/scenegraph/vrml_smjs.c:625: undefined reference toJS_NewDouble' scenegraph/vrml_smjs.o: In function loadScript': gpac/src/scenegraph/vrml_smjs.c:709: undefined reference toJS_GetStringBytes' scenegraph/vrml_smjs.o: In function getElementById': gpac/src/scenegraph/vrml_smjs.c:771: undefined reference toJS_GetStringBytes' scenegraph/vrml_smjs.o: In function addRoute': gpac/src/scenegraph/vrml_smjs.c:873: undefined reference toJS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:896: undefined reference to JS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:929: undefined reference toJS_GetFunctionName' scenegraph/vrml_smjs.o: In function deleteRoute': gpac/src/scenegraph/vrml_smjs.c:993: undefined reference toJS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:1017: undefined reference to JS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:1018: undefined reference toJS_GetStringBytes' scenegraph/vrml_smjs.o: In function loadURL': gpac/src/scenegraph/vrml_smjs.c:1071: undefined reference toJS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:1091: undefined reference to JS_GetStringBytes' scenegraph/vrml_smjs.o:gpac/src/scenegraph/vrml_smjs.c:1108: more undefined references toJS_GetStringBytes' follow scenegraph/vrml_smjs.o: In function node_getProperty': gpac/src/scenegraph/vrml_smjs.c:1625: undefined reference toJS_NewDouble' gpac/src/scenegraph/vrml_smjs.c:1626: undefined reference to JS_NewDouble' gpac/src/scenegraph/vrml_smjs.c:1627: undefined reference toJS_NewDouble' gpac/src/scenegraph/vrml_smjs.c:1628: undefined reference to JS_NewDouble' scenegraph/vrml_smjs.o: In functionnode_setProperty': gpac/src/scenegraph/vrml_smjs.c:1663: undefined reference to JS_GetStringBytes' scenegraph/vrml_smjs.o: In functionnode_getTime': gpac/src/scenegraph/vrml_smjs.c:1739: undefined reference to JS_NewDouble' scenegraph/vrml_smjs.o: In functionvec2f_getProperty': gpac/src/scenegraph/vrml_smjs.c:1928: undefined reference to JS_NewDouble' gpac/src/scenegraph/vrml_smjs.c:1931: undefined reference toJS_NewDouble' scenegraph/vrml_smjs.o: In function vec2f_length': gpac/src/scenegraph/vrml_smjs.c:2065: undefined reference toJS_NewDouble' scenegraph/vrml_smjs.o: In function vec2f_dot': gpac/src/scenegraph/vrml_smjs.c:2091: undefined reference toJS_NewDouble' scenegraph/vrml_smjs.o:gpac/src/scenegraph/vrml_smjs.c:2128: more undefined references to JS_NewDouble' follow scenegraph/vrml_smjs.o: In functionarray_setElement': gpac/src/scenegraph/vrml_smjs.c:2973: undefined reference to JS_GetStringBytes' gpac/src/scenegraph/vrml_smjs.c:2984: undefined reference toJS_GetStringBytes' scenegraph/vrml_smjs.o: In function `array_setLength': collect2: error: ld returned 1 exit status Makefile:607: recipe for target '../bin/gcc/libgpac.so' failed make[1]: \* [../bin/gcc/libgpac.so] Error 1 make[1]: Leaving directory 'gpac/src' Makefile:9: recipe for target 'all' failed make: \* [all] Error 2
Issue to build GPAC on Fedora 21 due to JS functions
https://api.github.com/repos/gpac/gpac/issues/259/comments
8
2015-09-24T07:03:24Z
2015-11-17T17:09:45Z
https://github.com/gpac/gpac/issues/259
108,071,786
259
[ "gpac", "gpac" ]
I have built MP4Box on Ubuntu 12.04 64-bits and want to convert **subtitles.vtt** to SRT format: **subtitles.vtt:** ``` WEBVTT 00:00:01.320 --> 00:00:07.680 - Så er vi kommet til Dyrehaven. - Yes. Dyrehaven nord for København. 00:00:07.800 --> 00:00:09.840 - Det bliver en stor dag. - Ja. 00:00:09.960 --> 00:00:14.400 - Vi skal have fundet noget forladt. - Det skal vi. 00:00:17.720 --> 00:00:20.040 Det er perfekt. 00:00:23.400 --> 00:00:28.840 Det er den knold der. Det ligner jo ikke et fort. ``` ``` $ MP4Box -srt subtitles.vtt WebVTT import Conversion done ``` MP4Box does not generate any error messages, but the output file is incorrect: **subtitles.srt:** ``` 1 00:00:00,000 --> 00:00:01,320 2 00:00:01,320 --> 00:00:07,680 3 00:00:07,680 --> 00:00:07,800 4 00:00:07,800 --> 00:00:09,840 5 00:00:09,840 --> 00:00:09,960 6 00:00:09,960 --> 00:00:14,400 7 00:00:14,400 --> 00:00:17,720 8 00:00:17,720 --> 00:00:20,040 9 00:00:20,040 --> 00:00:23,400 10 00:00:23,400 --> 00:00:28,840 ``` ``` $ MP4Box -version MP4Box - GPAC version 0.5.2-DEV-rev676-g8917b91-master GPAC Copyright (c) Telecom ParisTech 2000-2012 GPAC Configuration: --static-mp4box --use-zlib=no Features: GPAC_64_BITS GPAC_DISABLE_3D GPAC_DISABLE_SWF_IMPORT ```
Faulty WebVTT to SRT subtitle conversion
https://api.github.com/repos/gpac/gpac/issues/258/comments
1
2015-09-23T16:15:03Z
2019-06-28T15:26:29Z
https://github.com/gpac/gpac/issues/258
107,955,227
258