HDS stream with delay

Hi all,
there is something to set in OSMF property, similar to the smooth streaming's "live backoff"?
In plain words something that allows to start the live video with delay, specially with HDS stream.
Thanks in advance
m

Only about 5% - 7% consumed by FLE
The rest is almost idle.
I allready switch to high priority and remains the same...
Message was edited by: eduardoluis2010

Similar Messages

  • HDS streaming is not working, error: problem with playback

    Hi,
    We have a problem to do HDS streaming in my FMS ...attached the screenshot showing error when i tried in my sample video player.
    Normally what could be the reason for it. RTMP is working without any probelms.
    Please advice where I can check the errorlogs for this issue.

    FMS version 4.5
    # cat Event.xml
    <Event>
      <EventID>liveevent</EventID>
      <Recording>
        <FragmentDuration>4000</FragmentDuration>
        <SegmentDuration>400000</SegmentDuration>
        <DiskManagementDuration>3</DiskManagementDuration>
      </Recording>
    </Event>
    # cat Manifest.xml
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <media streamId="livestream" bitrate="350" />
    </manifest>
    httpd.conf
    # This is the main Apache server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Please see httpd.conf.orig for the configuration of a default
    # (non-FMS) installation of apache.
    Listen 80
    #Listen 8134
    # If you plan to run FMS as root on linux, you _must_ specify a
    # valid user, with access to the FMS installation direction, or
    # apache will not run.
    # If you've used the default installer, nobody (or whatever other
    # username you gave to the installer) will work here.
    # If you're running a developer build under your own home directory,
    # you should use your own username.
    User fms
    Group fms
    AccessFileName .htaccess
    ServerSignature On
    UseCanonicalName Off
    HostnameLookups Off
    Timeout 120
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 15
    ErrorLog logs/error_log
    LogLevel info
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    CustomLog logs/access_log combined
    # Proxy rtmpt to FMS
    ProxyRequests Off
    ProxyPass /open/ http://localhost:1935/open/
    ProxyPass /close/ http://localhost:1935/close/
    ProxyPass /idle/ http://localhost:1935/idle/
    ProxyPass /send/ http://localhost:1935/send/
    ProxyPass /fcs/ http://localhost:1935/fcs/
    ProxyPass /fms/ http://localhost:1935/fms/
    DocumentRoot "../webroot"
    DirectoryIndex index.html index.html.var index.php index.php3 index.php4 index.php5 index.py index.pl index.rb
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
        Satisfy all
    </Directory>
    <Directory "../webroot">
        Options -Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    Alias /documentation ../documentation/
    <Directory ../documentation/>
        Options FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    Alias /icons/ "icons/"
    <Directory "icons">
        Options MultiViews FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    Alias /error/ "error/"
    ScriptAlias /cgi-bin/ "cgi-bin/"
    <Directory "cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
    <Location /server-status>
        SetHandler server-status
        Order deny,allow
        Deny from all
        Allow from 10.0.0.0/8
        Allow from 172.16.0.0/12
        Allow from 192.168.0.0/16
        Allow from 127.
    </Location>
    ExtendedStatus On
    <Location /server-info>
        SetHandler server-info
        Order deny,allow
        Deny from all
        Allow from 10.0.0.0/8
        Allow from 172.16.0.0/12
        Allow from 192.168.0.0/16
        Allow from 127.
    </Location>
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
    </FilesMatch>
    <IfModule mpm_winnt_module>
        ThreadsPerChild 250
        MaxRequestsPerChild 0
    </IfModule>
    <IfModule worker_module>
        StartServers         2
        MaxClients         150
        MinSpareThreads     25
        MaxSpareThreads     75
        ThreadsPerChild     25
        MaxRequestsPerChild  0
    </IfModule>
    LoadModule actions_module modules/mod_actions.so
    #LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule auth_digest_module modules/mod_auth_digest.so
    LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    <IfModule mpm_winnt_module>
        LoadModule cgi_module modules/mod_cgi.so
    </IfModule>
    <IfModule worker_module>
        LoadModule cgid_module modules/mod_cgid.so
    </IfModule>
    LoadModule dav_module modules/mod_dav.so
    LoadModule dav_fs_module modules/mod_dav_fs.so
    LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    LoadModule headers_module modules/mod_headers.so
    LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    LoadModule info_module modules/mod_info.so
    <IfModule mpm_winnt_module>
        LoadModule isapi_module modules/mod_isapi.so
    </IfModule>
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule status_module modules/mod_status.so
    LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    #LoadModule ssl_module modules/mod_ssl.so
    # The following section enables caching of Just-In-Time packaged content     #
    # Use htcacheclean tool to manage the amount of data that is cached on disk. #
    # See Apache documentation for its usage.                                    #
    # http://httpd.apache.org/docs/2.2/programs/htcacheclean.html                #
    # Make sure the directory specified by the CacheRoot directive exists. The   #
    # default is a directory named cacheroot that is directly under the Apache   #
    # installation directory.                                                    #
    # For more information on content caching, see Apache documentation          #
    # http://httpd.apache.org/docs/2.2/caching.html                              #
    # Uncomment this to enable caching
    #LoadModule cache_module modules/mod_cache.so
    <IfModule mod_cache.c>
        LoadModule disk_cache_module modules/mod_disk_cache.so
        <IfModule mod_disk_cache.c>
            CacheEnable disk /hds-vod
            CacheEnable disk /hls-vod
            CacheRoot cacheroot
            CacheMaxFileSize 10000000
            CacheLock On
        </IfModule>
    </IfModule>
    <IfModule mod_deflate.c>
        AddOutputFilterByType DEFLATE application/vnd.apple.mpegurl
        SetEnvIfNoCase Request_URI "^" dont-vary
        SetEnvIfNoCase Request_URI \.(?:vnd\.apple\.mpegurl)$ !no-gzip !dont-vary
        Header append Vary Accept-Encoding env=!dont-vary
    </IfModule>
    LoadModule alias_module modules/mod_alias.so
    LoadModule f4fhttp_module modules/mod_f4fhttp.so
    <IfModule f4fhttp_module>
    <Location /vod>
        HttpStreamingEnabled true
        HttpStreamingContentPath "../webroot/vod"
        Options -Indexes FollowSymLinks
    </Location>
    # Drop the Range header when more than 5 ranges.
    # CVE-2011-3192
    SetEnvIf Range (,.*?){5,} bad-range=1
    RequestHeader unset Range env=bad-range
    # map old style url to new (as of FMS 4.5), more compact url
    Redirect 301 /live/events/livepkgr/events /hds-live/livepkgr
    <Location /hds-live>
        HttpStreamingEnabled true
        HttpStreamingLiveEventPath "../applications"
        HttpStreamingContentPath "../applications"
        HttpStreamingF4MMaxAge 2
        HttpStreamingBootstrapMaxAge 2
        HttpStreamingDrmmetaMaxAge 2
        HttpStreamingFragMaxAge -1
        Options -Indexes FollowSymLinks
    </Location>
    </IfModule>
    LoadModule hlshttp_module modules/mod_hlshttp.so
    <IfModule hlshttp_module>
    <Location /hls-live>
        HLSHttpStreamingEnabled true
        HttpStreamingLiveEventPath "../applications"
        HttpStreamingContentPath "../applications"
        HLSMediaFileDuration 8000
        HLSSlidingWindowLength 6
        HLSFmsDirPath ".."
        HLSM3U8MaxAge 2
        HLSTSSegmentMaxAge -1
        HLSMaxEventAge 300
        HttpStreamingUnavailableResponseCode 503
    # Uncomment the following directives to enable encryption
    # for this location.
    #    HLSEncryptionScope server
    #    HLSEncryptCipherKeyFile "../phls/liveeventkey.bin"
    #    HLSEncryptKeyURI        "https://<ServerName>/hls-key/liveeventkey.bin"
        Options -Indexes FollowSymLinks
    </Location>
    <Location /hls-vod>
        HLSHttpStreamingEnabled true
        HLSMediaFileDuration 8000
        HttpStreamingContentPath "../webroot/vod"
        HLSFmsDirPath ".."
        HLSJITConfAllowed true
    # Uncomment the following directives to enable encryption
    # for this location.
    #    HLSEncryptionScope server
    #    HLSEncryptCipherKeyFile "../phls/vodkey.bin"
    #    HLSEncryptKeyURI        "https://<ServerName>/hls-key/vodkey.bin"
        Options -Indexes FollowSymLinks
    </Location>
    </IfModule>
    LoadModule jithttp_module modules/mod_jithttp.so
    <IfModule jithttp_module>
    <Location /hds-vod>
        HttpStreamingJITPEnabled true
        HttpStreamingContentPath "../webroot/vod"
        HttpStreamingJITConfAllowed true
        JitFmsDirPath ".."
        Options -Indexes FollowSymLinks
    </Location>
    </IfModule>
    LoadModule ctrlplane_module modules/mod_ctrlplane.so
    <IfModule ctrlplane_module>
    <Location /ctrlplane>
                    SetHandler ctrlplane
                    HdsHttpStreamingLiveEventPath "../applications"
                    HlsHttpStreamingLiveEventPath "../applications"
                    MaxBootstrapAge 300
                    Options -Indexes FollowSymLinks
    </Location>
    </IfModule>
    TypesConfig conf/mime.types
    MIMEMagicFile conf/magic
    DefaultType text/plain
    AddType video/x-flv .flv
    AddType video/MP2T .ts
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    AddType application/x-mpegurl .m3u8
    AddHandler send-as-is asis
    AddHandler type-map var
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    <IfModule ssl_module>
        SSLRandomSeed startup builtin
        SSLRandomSeed connect builtin
    </IfModule>
    <IfModule userdir_module>
        UserDir disable
    </IfModule>
    <IfModule dav_fs_module>
        DAVLockDB tmp/dav/lockdb
    </IfModule>
    IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIconByType (VID,/icons/movie.gif) application/x-shockwave-flash
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    DefaultIcon /icons/unknown.gif
    ReadmeName README.html
    HeaderName HEADER.html
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    AddLanguage ca .ca
    AddLanguage cs .cz .cs
    AddLanguage da .dk
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage en .en
    AddLanguage eo .eo
    AddLanguage es .es
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage he .he
    AddLanguage hr .hr
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage ko .ko
    AddLanguage ltz .ltz
    AddLanguage nl .nl
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddLanguage pt .pt
    AddLanguage pt-BR .pt-br
    AddLanguage ru .ru
    AddLanguage sv .sv
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
    LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
    ForceLanguagePriority Prefer Fallback
    AddDefaultCharset UTF-8
    <IfModule mod_negotiation.c>
        <IfModule mod_include.c>
            <Directory "error">
                AllowOverride None
                Options IncludesNoExec
                AddOutputFilter Includes html
                AddHandler type-map var
                Order allow,deny
                Allow from all
                LanguagePriority en es de fr
                ForceLanguagePriority Prefer Fallback
            </Directory>
        </IfModule>
    </IfModule>
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
    BrowserMatch "MS FrontPage" redirect-carefully
    BrowserMatch "^WebDrive" redirect-carefully
    BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
    BrowserMatch "^gnome-vfs/1.0" redirect-carefully
    BrowserMatch "^XML Spy" redirect-carefully
    BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
    #Uncomment following for enabling https based key serving
    #for HLS.
    #Include conf/httpd-hls-secure.conf

  • How does exactly AMS sync a video stream with another stream of audio only ?

    I have the following situation: 2 instances of FMLE on one machine and another machine with AMS Starter.
    The instances of the FMLE are:
    1. Video H.264 + audio MP3
    2. Audio only MP3 - track 1
    The application on AMS is a livepkgr/_definst_ and i am using HDS with a live event
    I have an OSMF based player to consume the streams and to do audio switch using late binding audio.
    When I consume the Video with the Default audio everything works just fine. The problem is that when I try to consume the Video with the other audio track, the audio tack has a 1 second delay compared to the video.
    I have tried to fix this by changing the configurations on the FMLE, but it doesnt seem to work. So I really want to know how does exactly AMS syncronize differents streams, in this case a video stream with a different audio stream.

    First, what is the file format, and its specs. for the remote recorder?
    Though the rates of modern cameras and digital recorders SHOULD match 100%, in the real-world, they seldom do. This make perfect syncing a labor intensive process.
    One should do tests between the cameras and the recorders, to find out the % or error. Then, adjust their Audio to match first. As an example, one user in the PrPro Forum tested his Panasonic cameras, and his Zoom recorders, and found that the Zooms were off by 0.04% constantly. To correct this, he used the Time Remapping (with Maintain Pitch checked), and would apply that adjustment to all of the Zooms' files - perfect sync.
    As for the Waveform not displaying for your remote recorder, did you allow those files to completely Conform (creation of the CFA and PEK files, the latter is the Waveform Display)? See this article: http://forums.adobe.com/thread/726693?tstart=30
    Also, you should be able to increase the vertical zoom of your Audio Tracks, and hence any Clips on them, by hovering the Cursor over the junction between Tracks, in the Track Header, and when it turns into a = sign, with up/down arrows, click+drag. Then, you should be able to find commonality in the beginning, to sync up to. Tip: for this critical work, toggle the Snap feature OFF, with the S key.
    Good luck,
    Hunt

  • Synchronize on video stream with mplayer

    Hello,
    I recently bought an EasyCap DC60+ USB adapter. It is an RCA -> USB adapter which is recognized as an USB webcam by the kernel.
    I installed the easycapd60 module and it works fine for video with no sound, but I can't get audio working correctly. It looks like my audio stream is 1 second late on the video stream (I get the sound one second after the image).
    The problem is that mplayer is synchronizing the playback on the audio stream (I think). That means that my video stream is delayed in order for it to be in sync with the audio stream. As I want to use this DC60+ adapter to play video games on my computer screen, I can't tolerate a 1 second delay.
    A solution to this problem would be to ask mplayer to synchronize on the video stream instead of the audio stream, then play with the A/V sync parameters to get the audio synchronized. But I can't find the parameter to do this in the mplayer manpage.
    So my question is the following : does this parameter exist ? And is there another solution I didn't think of which could solve my problem ?
    Last edited by delroth (2010-06-06 00:26:14)

    Did you have to do anything special to get the DC60+ to work?  I've got one installed using the em28xx driver and it eventually makes my USB mouse stop responding, and sometimes the whole system crashes after that.

  • Custom metadata in HDS stream bound for OSMF

    Can someone tell me which "BOX" (atom) type in a HDS stream I could use to embed custom timeline metadata?  I have access to, and can modify, the raw HDS stream.   MDAT, MOOF,etc....? The stream will be played back in OSMF, and presumably I can modify BoxParser and HHTPStreamingF4FFileHandler to parse the appropriate box.  Presumably this is how CuePoints and such are tunneled from AMS/FMS.
    Thanks.
    -- Brad

    Another point to note is that once I start publishing to the
    recording app, I get the metadata of the stream with
    objMetadata = Stream.getOnMetaData("streamname");
    and trace the properties of the objMetadata object every 1/2
    second (this is purely for debugging purposes while I work out what
    the hell is going on). But for around the first 30 seconds, nothing
    is output! Then all of a sudden, the output starts tracing to
    screen. IF my customduration metadata is there, it has its initial
    value as indicated in my post above (for example 7), and never
    increments. But more interestingly, the duration metadata that FMS
    automatically inserts might say 39.076 once the traces start coming
    through! So I would at least think that my customduration would be
    around 39 give or take. Also the FMS duration says 39.076, but then
    it stays at the same value for a while, even though it's being
    traced every 1/2 a second, then it might say 71.200, then stays the
    same for about 30 seconds, then 104.863 and so on.
    This makes sense if this is only being updated in memory
    every 30 seconds or so (the docs state that the 'data keyframe is a
    special data message that can be added to a live stream and stored
    in the memory of the server'), but then it also means that when
    reading it, we will never know if this is actually correct! I mean
    if I connect and get the metadata and the duration says 71, I'm
    going to assume that I connected to the live stream 71 seconds in,
    but it could have been saying 71 for the past 20 seconds, and I'm
    really 91 seconds into the live stream!
    K.

  • Max buffer size for HDS streams

    How does OSMF (v2.0) compute the max buffer length for HDS streams (pre-recorded)?
    I have  mediaPlayer.bufferTime = 5 seconds, but I see that even on very good b/w connections, the buffer length does not exceed 7.5 secs. Is there a way to increase the maximum buffer length value, so that clients on higher b/w can accumulate a larger buffer?
    By comparison, for RTMP, the buffer length seems to go up to 60sec which is consistent with what the docs say here:
    http://livedocs.adobe.com/flashmediaserver/3.0/hpdocs/help.html?content=00000175.html
    Thx,
    - abey

    No. Did not find a way to set the maxBuffer value, but I was able to workaround the problem by setting the mediaPlayer.bufferTime dynamically (i.e different values for various stages of playback, like loading, seeking, buffering, normal playback etc.)..So setting bufferTime to 60 secs during normal playback allows the buffer to grow to a decent size.
    - Abey

  • Streaming with H.264 (jiggle)

    Hello,
    After streaming with Flash Media Encoder 3.1 and ManyCam/Splitcam with VP6 and 320x240,30fps (works good!!),
    I tried to stream HQ with H.264,30FPS,640x360,700kbps...
    Buter after pressing start,the both Windows (Input and Output) will jiggle very strong.(In the Justin.tv stream,too,of course)
    Looking in the Encoding Log,it shows me an Output with 11-12 fps.
    But where is the Problem? (PC,Internet...?)
    My System:
    Laptop Core 2 duo T5250@1,50GHz
    3GB RAM
    Windows Vista
    enough Harddisk
    ATI Mobility Radeon X2300
    DSL 20.000/1.024
    Thanks a lot =)

    Ithink the problem is that the H.264 codec needs more CPU resources compared to ON2 VP6.
    I tried 640x480, 25fps, 200Kbps with the 2 codec (VP6, and h264). I have the H.264 codec with a delay of 3 seconds and a delay vp6 less than 1 second.
    I think these should you need more CPU resources with H264
    the cpu works a lot with h.264 and this makes for more delay
    http://help.adobe.com/es_ES/Flash/10.0_UsingFlash/WS9222D73A-676D-41cd-9222-A4884858BBA3.h tml
    Enrique Figueroa

  • Live Stream - Huge Delay

    Hello,
    We have major issue with delayed video.
    The delay may reach up to 10-15 minutes. When we restart
    Flash Media Encoder (Stop/Start) the delay is reseted.
    We are using Flash Media Encoder for quite some time with
    Flash Media Server 2.0. Both are the newest version.
    Latency between Flash Media Encoder and Server is about
    200-300ms. I assume there is a bug and the video stream does not
    get synchronized.
    I can provide you an access to demo machine if you like.
    We observed this on several machines.

    Hi,
    You won't have much luck with gettng that delay down unless
    you have less than 100 ms of latency.
    My understanding is that because of a non optimal condition
    existing between the server and encoder the server will basically
    compensate by buffering longer. You could also see a stream with no
    delay inititally but if network conditions change the delay could
    grow and because the server doesn't "catch up" the delay will
    remain until the encoder is restarted.
    Hope that helps,
    Adam Walsworth
    http://www.adamwalsworth.com

  • Strange behaviour of iPad Photos app/My Photo Stream with iOS 8.1 and Yosemite

    My requirement is surely simple and commonplace, yet is proving impossible to achieve thanks to Apple's weird design of the Photos app and the way My Photo Stream works.  I'm very technically savvy, but I'm quite prepared to admit I'm being stupid if someone can explain what I'm doing wrong!  I have an iPad Air running iOS 8.1 and a MacBook Pro Retina with OS X 10.10 (Yosemite).  I've enabled iCloud Drive on both.  iPhoto on the Mac is at v9.6.
    I have a selection of 109 photos from a recent holiday in a folder on my MacBook, which I would like in a folder on my iPad as a nice way to show them to friends.   iTunes may work but seems so incredibly clunky and old-fashioned I hoped I could do it over the network or via the cloud.  I would use (and often have used) Dropbox, which is reliable and logical but rather tedious as you have to save each photo one by one. 
    So, with a little research and playing around, I found that I could get them to the iPad using iPhoto on the Mac, with My Photo Stream enabled.  However, it doesn't seem to work.  The photos were all created yesterday so had yesterday's date (I'd removed EXIF data that contained various earlier dates).
    I've just done the following test:
    I deleted all photos from the iPad (using the Photos app)
    On the Mac, I deleted all photos from iPhoto
    In iPhoto Preferences on the Mac, I turned on “My photo stream”, with the two sub-options also enabled
    I imported the 109 photos into iPhoto
    On the iPad, in My Photo Stream, I saw the photos gradually appear over the next few minutes
    A  minute or two later, when no more seemed to coming, I found that 103 of the original 109 were in My Photo Stream.  So, strangely, 6 photos were missing
    Even stranger, in the “Photos” tab, under “Yesterday” 37 of them could be seen.  If I understand this correctly (which I may not), that means 37 of them had been copied from the My Photo Stream to the iPad itself.  Am I right?  Why only 37?
    On the iPad, I added a new Album called Summer 2014
    I selected all 103 photos from My Photo Stream to add to the album
    In the Summer 2014 album, I briefly see “103 Photos” at the bottom of the album, but this quickly changes to 66 as photos that briefly appeared now disappear, leaving only 66 left in the album
    Checking in Photos/Collections/Yesterday, I find there are now 66 photos (rather than 37 as there were earlier) - the same ones that are showing in my Summer 2014 album.
    If I attempt to manually add any of the missing photos to the album, nothing happens - the album refuses to allow any more than the 66 it has.
    In iPhoto on the Mac, if I click on the SHARED/iCloud entry on the left, I see all 109 photos, which I think means iPhoto has correctly shared them all, so I suspect the problem is with the iPad.
    Yesterday, when I was playing with this, the album allowed 68 photos.  I tried deleting one and adding one of the missing photos, but it wouldn't allow this either, so I don't think it's objecting to the number of photos so much as disliking particular ones.
    I've got 7.7GB free space on the iPad so I don't think it's a space issue.
    Can anyone help?  If it's a bug in iOS, iCloud or OS X, how can I report it, given that I'm out of my 3 months support for both my machines?
    Thank you!

    Well done lumacj! This is a good workaround. Forgive me if I offer a simplified version here (this works if original photos are in Photo stream):
    1. In "My photo stream", tap on select at top of screen
    2. Tap on each photo you want to send via WhatsApp (circle with "√" shows for each photo)
    3. Tap on square box with arrow at bottom of screen (Share) - NOT "Add To"
    4. Tap on "Save image(s)"
    5. Check that selected photos now appear on "Camera Roll"
    6. From WhatsApp, send photos as you would have normally

  • I have problem with delay in serial port

    I have problem with serial port. I have connected two computers by serial port and I need to create program in Labview for transfer strings using start bits and stop bits. My problem is that my program is working quite well ...when I press start bit it starts to concatenate strings and if i press stop bits it stops...this is the purpose of this program...but problem is that it working only with delay...and need that this program dont need delay, because it can only concatenating data depends on delay from start bit....I wana solved problem with delay...I dont want using delay process in my program, but allways when I try to delete this delay it stop works correct
    here is my program

    Ok this should be simple - if I understand you correctly.
    You have the VISA session initialized with read termination character enabled.  So reading the number of bytes at port is NOT the correct way to read from the port.  Set the read number of bytes to something large (say 4096) and the read will return as soon as a termination character is received (or timeout).
    You'll need to make sure the sending device is configured to send termination character on writes (you can set that with a VISA property node)  and that you are sending the correct termination character.  The default is 0x0A (newline).
    Jeff

  • How can I do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder which does not have firewire out/input? it comes only with a component video output, USB, HDMI and composite RCA output?

    I need to do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder (http://store.sony.co...ber=HDRAX2000/H) ..this camcorder model does not have firewire out/input ..it comes only with a component video output, USB, HDMI and composite A/V video output..
    I wonder how can I plug this camcorder to the firewire port of my laptop? Browsing on internet I found that Grass Valley Company produces this converter http://www.amazon.co...=A17MC6HOH9AVE6 ..but I am not sure -not even after checking the amazon reviews- if this device will send the video signal through firewire to my laptop, in order to live streaming properly? ..anyone in this forum could help me please?
    Thanx

    I can't broadcast with the built in iSight webcam... how would I zoom in or zoom out? or how would I pan? I've seem people doing it walking with their laptops but that's not an option for me... there's nothing wrong with my USB ports but that's neither an option to stream video because as far as I know through USB you can't connect video in apple operating systems ..you can for sure plug any video cam or photo camera through usb but as a drive to transfer data not as a live video camera...  is by firewire an old interface developed by apple that you can connect all sorts of cameras to apple computers... unfortunately my new sony HDR-AX2000 camcorder doesn't have firewire output...
    thanx

  • I have two different iCloud accounts. I can't sign into photo stream with my personal account and have tried deleting from my iPhone first, then the MacBook Pro. Still won't let me sign in with the personal account. Please help.

    I have two different iCloud accounts - business and personal. I can't sign into Photo Stream with my personal account because it says my business account is my primary account. They are separate but equal accounts. I have tried deleting the iCloud account from my iPhone, then my MacBook Pro and signing in again on both devices. The iPhone says that my primary account ismy personal account (which is good) but my MacBook Pro still will not sign into that account so I can use Photo Stream.
    Any suggestions? This iCloud stuff is getting annoying.

    you have a ps cs4 license for mac and you have some way of finding your serial number.
    if yes, download an install the installation file.  if you already have the installation file, what is its name and file extension?  (eg, if it's one file, it should be a dmg file.)
    if you need the installation file,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I share a photo stream with a family member. Is there a way to make it so we have separate photo stream but still use the same apple id?

    i share a photo stream with a family member. Is there a way to make it so we have separate photo stream but still use the same apple id?

    You'll want a separate iCloud account for each user in addition to the main Apple ID used for purchases.
    Let's say you have a family of four (husband, wife, and two children). Here is what you will need:
    Main Apple ID for shared purchases in Tunes (everybody will be using this)
    iCloud (Apple ID) account for husband
    iCloud (Apple ID) account for wife
    iCloud (Apple ID) account for child 1
    iCloud (Apple ID) account for child 2
    Yes, you can have both an Apple ID and iCloud account setup on the same device. On each iOS device, setup the main Apple ID account for the following services:
    iCloud (Photo Stream and Backup are the only items selected here).
    Music Home Sharing
    Video Home Sharing
    Photo Stream
    Additionally, on each iOS device, add a new iCloud account (Under Mail, Contacts, Calendar) that is unique to each user for the following services:
    Mail (if using @me.com)
    Contacts
    Calendars
    Reminders
    Bookmarks
    Notes
    Find My iPhone
    Messages
    Find Friends
    FaceTime
    On your individual Macs (or Mac accounts), use the main Apple ID in iTunes. Then, use the unique iCloud account in/for iCloud.
    Now that everbody is using separate iCloud accounts for your contacts, calendars, and other things, it will be all be kept separate.
    The only thing that is now 'shared' would be iTunes content (apps and other purchases), backups via iCloud (if enabled), and Photo Stream (if enabled).

  • How can I do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder ..that doesn't have firewire out/input?

    I need to do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder (http://store.sony.co...ber=HDRAX2000/H) ..this camcorder model does not have firewire out/input ..it comes only with a component video output, USB, HDMI and composite A/V video output..
    I wonder how can I plug this camcorder to the firewire port of my laptop? Browsing on internet I found that Grass Valley Company produces this converter http://www.amazon.co...=A17MC6HOH9AVE6 ..but I am not sure -not even after checking the amazon reviews- if this device will send the video signal through firewire to my laptop, in order to live streaming properly? ..anyone in this forum could help me please?
    Thanx

    I can't broadcast with the built in iSight webcam... how would I zoom in or zoom out? or how would I pan? I've seem people doing it walking with their laptops but that's not an option for me... there's nothing wrong with my USB ports but that's neither an option to stream video because as far as I know through USB you can't connect video in apple operating systems ..you can for sure plug any video cam or photo camera through usb but as a drive to transfer data not as a live video camera...  is by firewire an old interface developed by apple that you can connect all sorts of cameras to apple computers... unfortunately my new sony HDR-AX2000 camcorder doesn't have firewire output...
    thanx

  • HT204053 i have 2 apple ids and one is from years ago when icloud wasnt a thought but now somehow it became my primary apple id and i cant photo stream with the apple id i use. Even if im signed into my old one the photo stream doesnt automatically go to

    i have 2 apple ids and one is from years ago when icloud wasnt a thought but now somehow it became my primary apple id and i cant photo stream with the apple id i use. Even if im signed into my old one the photo stream doesnt automatically go to my mac. Im not exactly technology savy but id love to figure this out.

    I have also noticed the same "problem".  I do not fully understand the impact of using the same ID on multiple computers and devices if I want to keep them all in sync.

Maybe you are looking for

  • Can we let Macpro Firewire out the 3rd display?

    My mac pro has only 1 graphcis card and its connected to 2 display monitor. I also have a firewire video output that I can choose output the video via firewire in Logic Pro. I don't know if we can just let mac pro output the video via firewire in all

  • Bar code in oracle 10g report

    I am getting the folowing error mreeage: Terminated with error: <br>REP-1401: 'cf_1formula': Fatal PL/SQL error occurred. ORA-39565: Message 39565 not found; product=RDBMS; facility=ORA Here is my configuration detials: set the classpath in server co

  • New version 18.3.1.C.1.16 Xperia M2 D2303 has a bug again accelerometer (auto-rotate)

    The new version 18.3.1.C.1.16 (Customized CE1_1281-1548_18.3.1.C.1.16_R1B) Xperia M2 D2303 has a bug again accelerometer (auto-rotate). In the previous it was already repaired 18.3.1.C.1.15. During a phone call again suspended accelerometer (auto rot

  • 13" MBP Screen glitches and computer freezes when I hold it wrong...

    Sorry for the newbie question. I just got my MBP and ordered the Kingston 8gb deal on buy.com last week. After install I noticed if I pick up the computer and hold it on the right hand side almost underneath the option button, the screen glitches and

  • MS 12.0.1: How to control inital location of value and refdes text?

    When I use an opamp part from the master database, the part number (value?) and refdes are always initially located well away from the symbol.  When I create my own opamp, the part number and refdes are located right by the symbol, typically blocking