Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
how to use AdobeHDS to convert local .f4f files?i downloaded a movie i bought through Vudu and it was downloaded 3 files:
1. 9000.f4m 2. 9000Seg1.f4f 3. f4f_frag_offsets.csv a) I ran php AdobeHDS.php 9000Seg1.f4f > Found 0 fragments b) then I ran php AdobeHDS.php --manifest "file:///<goodPath>/9000.f4m" 9000Seg1.f4f I get a bunch of errors about the XML file: Warning: simplexml_load_string(): Entity: line 27: parser error : Opening and ending tag mismatch: META line 11 and head in AdobeHDS.php on line 409 Is it possible to use AdobeHDS to convert local .f4f files? |
#2
|
|||
|
|||
Re: how to use AdobeHDS to convert local .f4f files?manifest switch is supposed to work with remote manifest url not locally saved manifest file.
Code:
php AdobeHDS.php --manifest "http://some.server.com/manifest.f4m" Code:
php AdobeHDS.php 9000Seg Code:
php AdobeHDS.php --fragments 9000Seg Last edited by KSV : 12-02-2012 at 11:41 AM. |
#3
|
|||
|
|||
Re: how to use AdobeHDS to convert local .f4f files?Thanks I had tried without the segment index. Thanks to you i tried without the extension and it worked.
Code:
$ php AdobeHDS.php 9000Seg.f4f KSV Adobe HDS Downloader Found 0 fragments Code:
$ php AdobeHDS.php 9000Seg KSV Adobe HDS Downloader Found 1 fragments Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 6934686386 bytes) in /Scripts/AdobeHDS.php on line 1758 |
#4
|
|||
|
|||
Re: how to use AdobeHDS to convert local .f4f files?6 GB a single fragment size can't be that large. this script is intended to process client side fragments which will be hardly of few MB in any case. probably you are trying to process the f4f file generated on server side. simply renaming it to f4v or mp4 may work in that case.
|
#5
|
|||
|
|||
Re: how to use AdobeHDS to convert local .f4f files?This file is the result of downloaded an HDX version from VUDU.
I had tried to change the extension to .mp4 and it did not work |
#6
|
|||
|
|||
Re: how to use AdobeHDS to convert local .f4f files?i have checked out vudu.com myself. they are using FlashAccess DRM to protect their content. even trailers are DRM'ed. also method to access individual fragments is quite different (too old or custom) Seg1.f4f/range/97248-13224690 instead of regular Seg1-Fragx. This script can't be of much use in case of encrypted content.
|
Tags: adobehds, f4f, flv, vudu |
Thread Tools | |
Display Modes | |
|
|