Custom Video player

Hi,
Im new to adobe edge, and not much example to seek online,
thus here am i asking for some reference.
i would like to know is it possible to create a custom html5 video player
using adobe edge animate?

I have this same problem:
"Unauthorized/ It appears you're not allowed to view what you requested. You might contact your administrator if you think this is a mistake."
Why??? How can I contact administrator (if it will help)??

Similar Messages

  • Using a custom video player (skin) for Event Videos?

    Hi
    I'd like use something other than the 9 standard video skins that come with Captivate 6 (Halo, Clear and Corona). Is it possible to use a custom video player or at least a different skin for an Event video?  And, if so, does anyone know where I could find a collection of custom skins (free or otherwise)?
    Thanks
    Paul

    Well sure enough, that WPF MediaKit indeed uses D3DImage for the WPF interop. In fact he does things very similar to me except mostly he seems to use DirectShow whereas I'm 100% Media Foundation. Maybe should rethink that... If only DirectShow had H264
    support in Windows 8. Stupid licensing issues. Anyway thanks again for that link.

  • Custom Video Player from Adobe Photoshop to Catalyst

    I create a video player in Photoshop (a .psd file, obviusly) and I want to make it work in Flash Catalyst without using the standart skin o' video player from there. It's possible?
    if so, how would the procedure? Something very complicated?
    Thank you.
    @eldermarx

    Hi there,
    You can't skin the video player the way you can skin wireframe components like a button or data list. However, you can create a custom component that contains your video, and several buttons that control playback using Catalyst interactions.
    You would place your video in the artboard, set its controls to "No Chrome", and then add your play, pause, and stop buttons. You'd need to wire up interactions to these buttons to play, pause, and stop the video.
    -Bear

  • How to play Encrypted video File In Adobe Air Video Player

    Hello Friends
                          I am making A custom video player in adobe air.in which video path comes from xml stored in ur system.but that xml contains the encrypted path of all video file.I have to make a video player in adobe air which First Decrypt that enncryped file to get original FLV files and then play them.I mean All the decryption logic is implemented at our side(Action Scripting).So can And Any body please guide me that is there any Flash/Flex Inbuilt Api for Decryption.If Yes Then Please Guide me,Its very Intersting and new task.I am Attaching the pictorial view for that.
    Thanks And Regards
        Vineet osho

    Guys
               i am giving more information about this tool.hope it will clear more picture.i have to use DRMManager class for decrypting that video file.
    here is the link i am following.
    http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118676a5be7-8000. html
    after that i also follow the link:-
    http://www.ezdrm.com/html/Adobe/FMRMS/about_FMRMS.asp
    i have to make almost similar application just like adobe media player.So please give me any idea about what to do and how to start the application in adobe air.
    Thanks And Regards
      Vineet Osho

  • How to embed a flash video player in iWeb?

    I'm using this open source video player:
    http://www.jeroenwijering.com/extras/readme.html#installing
    I've customized it here:
    http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.html
    I'm trying to imbed it in an iWeb page using the "HTML Snippet" feature.
    This is the code that is recommended:
    <embed src="http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.swf" width="600" height="600
    type="application/x-shockwave-flash" pluginspage=
    "http://www.macromedia.com/go/getflashplayer" />
    </object>
    .... but I'm left with only a "white box" with the rotating circle...
    any ideas?

    Here is an updated version of the question which will hopefully make it useful for further users of iWeb... once an answer is found....
    I'm trying to embed this player into myspace and also into iWeb 2.0 as a "web widget":
    http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.html
    This HTML will make it work in Myspace and iWeb 2.0:
    <object enableJSURL="false" enableHREF="false" saveEmbedTags="true" allowScriptAccess="never" allownetworking="internal" type="application/x-shockwave-flash" data="http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.swf" height="300" width="312">
    <param name="movie" value="http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.swf" />
    <param name="allownetworking" value="internal" />
    <param name="allowScriptAccess" value="never" />
    <param name="enableJSURL" value="false" />
    <param name="enableHREF" value="false" />
    <param name="saveEmbedTags" value="true" />
    <param name="bgcolor" value="..FFFFFF" />
    <param name="wmode" value="opaque" />
    <param name="quality" value="high" />
    <param name="menu" value="false" />
    <param name="scale" value="showall" />
    <param name="flashvars" value="file=http://www.perlstrax.com/alexanderperls_musicvideos/playlist.xml&autostart=true&lightcolor=0xffcc00" />
    ...BUT ..... no menu shows up to select the video...
    I think the problem is that it's running the SWF file OK, but in order for it to work properly, it has to read data from this HTML file http://www.perlstrax.com/alexanderperls_musicvideos/flvplayer.html
    and this XML file: http://www.perlstrax.com/alexanderperls_musicvideos/playlist.xml
    Here is a recent discussion on placing these players in myspace:
    http://www.jeroenwijering.com/?thread=3007

  • Flash Video Player Need Help

    Hello everyone I am hoping someone here can help me.  I am going to school and I have an action scripting class.  For my final project we have to make a flash video player with a custom skin to upload to our websites. We did something similar to this with our first project which we made a player where the movies where embedded in the file itself but this is supposed to be a youtube like flash player where we can call in the files from another source.   
      We kind of got pressed for time and were not able to go into detail with this project so the teacher gave us the code and I put it in exactly how it should be but im pretty sure i have something misplaced or I am missing a step. I get 8 different errors when I go to test the movie. and nothing works.  Can someone please tell me what I am doing wrong or can you point me in the direction of a tutorial on this  as I have been searching for tutorials on this with no luck. 
    Here is my Action Script 3.0 CODE:
    import fl.video.FLVPlayback;
    import fl.controls.List;
    var vid:FLVPlayback = new FLVPlayback();
    vid.source= "fashion.flv";
    addChild(vid);
    vid.skin="SkinOverPlayStopSeekMuteVol.swf";
    vid.x=100;
    vid.y=300;
    vid.skinAutoHide="true";
    vid.width=500;
    vid.height=280;
    var vidList:List = new List();
    vidList.x= vid.x+10;
    vidList.y= 200;
    vidList.width=200;
    vidList.height=100;
    vidList.addItem({label:"Bathroom Behavior",data: "bathroom.flv"});
    vidList.addItem({label:"Chase Scene",data: "chase.flv"});
    vidList.addItem({label:"VMCAD Fashion Design Commercial",data: "fashion.flv"});
    addChild(vidList);
    vidList.addEventListener(Event.CHANGE,playVid);
    function playVid(e:Event):void{     
    vid.source=e.target.selectedItem.data;
    Here is a screenshot of the errors I am receiving.
    Please help me 
    thanks
    Message was edited by: BTwardy

    I don't know if what you posted is all that is in that as file, but you need to declare a package, then call the import statements, then declare the class name.  Like this:
    package {
         import flash.display.Sprite;
         import flash.events.Event;
         import fl.video.FLVPlayback;
         import fl.controls.List;
         public class Main extends Sprite {
              public function Main() {
                   var vid:FLVPlayback = new FLVPlayback();
                   vid.source= "fashion.flv";
                   addChild(vid);
                   vid.skin="SkinOverPlayStopSeekMuteVol.swf";
                   vid.x=100;
                   vid.y=300;
                   vid.skinAutoHide="true";
                   vid.width=500;
                   vid.height=280;
                   var vidList:List = new List();
                   vidList.x= vid.x+10;
                   vidList.y= 200;
                   vidList.width=200;
                   vidList.height=100;
                   vidList.addItem({label:"Bathroom Behavior",data: "bathroom.flv"});
                   vidList.addItem({label:"Chase Scene",data: "chase.flv"});
                   vidList.addItem({label:"VMCAD Fashion Design Commercial",data: "fashion.flv"});
                   addChild(vidList);
                   vidList.addEventListener(Event.CHANGE,playVid);
              function playVid(e:Event):void{     
                   vid.source=e.target.selectedItem.data;
    Then click on your stage in Flash, then open the properties window, and fill the Class text field with:   Main
    Make sure the as file is saved in the same folder as the flv.

  • How disable the full screen option in the standard or wireframe video player ?

    I was wondering if (and how) it's possible to just disable the full screen option in the controls that appear below the video player (standard or wireframe).
    I want to have a video player with the progression bar, play / pause options, the counter without the full screen option because: "When someone clicks the Full Screen button during playback, the video opens in a pop-up window. Any interaction used to transition to a new state in the application does not work."
    http://help.adobe.com/en_US/flashcatalyst/cs/using/WS4bebcd66a74275c3-326fcb52123816c0204- 7fed.html
    Thanks for your help.
    //Catalyster33//

    I don't think so from within Flash Catalyst. That is all part of the component. I took a quick look at the docs, and did not see that element at as a parameter. There are only two options I can think of: either build a custom controller in  Flash Catalyst (which may not have all the same functionality as the stock controller) or take your project into Flash Builder and modify the controller skin there.
    Chris

  • Getting install video player ad and it won't go away

    I keep getting this install video player ad each time I go on my website and it won't go away???? This is the address I keep getting http://www.activeplayer.us/download/Player/DMG/US/auload.html?installer=Video_Player_for_Other_Browsers&browser_type=KHTML&dualoffer=false

    You can check for recently installed suspicious or unknown extensions.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • I am getting annoying popups from a site in Spain claiming Firefox recommends I download an updated video player from them. Looks like SPYWARE! MAKE IT STOP!

    It explains things on my end. I hope you guys are not in on this. It's intrusive and rather pushy at that. I don't feel I should have to download another video player. The name of the company is updatevideos<i></i>.com. I went there and it took me to api<i></i>.adrenalads<i></i>.com and then to mojopages<i></i>.com!!! If some lumphead is trying to get over on me , I ain,t buyin'!!!
    THANKS, Andy

    Hi rimshot69, did you check for an extension in Firefox? To see whether one of those might be involved, you could try one of the following:
    (1) Manually Disable ALL nonessential and/or unrecognized extensions on the following screen. If in doubt, disable:
    orange Firefox button (or Tools menu) > Add-ons > Extensions category
    Then restart Firefox using the handy links provided for that purpose and see whether the messages stop.
    (2) Test in Firefox's Safe Mode
    That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    Any difference?
    You also may want to run some supplemental scans. These three tools are highly regarded (and free):
    * Malwarebytes Anti-malware : http://www.malwarebytes.org/products/malwarebytes_free
    * SUPERAntiSpyware : http://www.superantispyware.com/
    * AdwCleaner : http://www.bleepingcomputer.com/download/adwcleaner/ ''(ignore banner ads for other products)''

  • Multicast video player with FMS 4.0

    I am trying to create a video player in Flash Builder using the new Flash Media Server 4.0 capabilities but I am not able to. The only thread I've seen out there is regarding the P2P player which is not what I want as seen here:
    http://www.swfgeek.net/2010/08/10/multicast-streaming-in-flash-player-10-1-revisited/
    I want to create a custom player that can retrieve a multicast broadcast.
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
             xmlns:s="library://ns.adobe.com/flex/spark"
             xmlns:mx="library://ns.adobe.com/flex/mx" width="650" height="250">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
        <![CDATA[
        import mx.core.UIComponent;
        import spark.components.Group;
        private const SERVER:String = "rtmfp://172.22.2.150/multicast";
        private const DEVKEY:String = ""; //removed for now
        [Bindable]
        private var connected:Boolean = false;
        private var video:Video;
        private var netConnection:NetConnection;
        private var stream:NetStream;
        public function init():void{
        writeText("Broadcaster:");
        video = new Video(320,240);
        video.x = 10;
        video.y = 10;
        var uic:UIComponent = new UIComponent();
        uic.addChild(video);
        addElement(uic);
        connect();
        private function connect():void{
        netConnection = new NetConnection();
        netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
        netConnection.connect(SERVER+DEVKEY);
        private function onNetConnectionNetStatus(event:NetStatusEvent):void
        switch(event.info.code){
        case "NetStream.Connect.Success":
        event.info.stream.dispatchEvent(event);
        break;
        private function netStatus(event:NetStatusEvent):void{
        writeText(event.info.code);
        switch(event.info.code){
        case "NetConnection.Connect.Success":
        setupStream();
        break;
        case "NetStream.Connect.Success":
        // not using a camera, using another live video source
        //var cam:Camera = Camera.getCamera();   
        //stream.attachCamera(cam);
        //stream.publish("multicast");
        //video.attachCamera(cam);
        stream.attach(netConnection);
        stream.publish("myStream");
        video.attachNetStream(stream);
        break;
        private function setupStream():void{
        //var groupspec:GroupSpecifier = new GroupSpecifier("myGroup/multicastOne");
            var groupspec:GroupSpecifier = new GroupSpecifier("fms.multicast.example");
        groupspec.serverChannelEnabled = true;
        groupspec.multicastEnabled = true;
        groupspec.groupspecWithoutAuthorizations()
        stream = new NetStream(netConnection,groupspec.groupspecWithAuthorizations());
        stream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
        private function writeText(txt:String):void{
        txtHistory.text += txt+"\n";
        ]]>
        </fx:Script>
        <s:TextArea top="10" bottom="10" id="txtHistory" width="250" right="10"/>
    </s:Group>

    The QT movie opened promptly for me in Firefox 4.0. The fact that it's intermittent for you with FF indicates that it's a connection issue and not an iWeb issue. For some reason not all of the files are being loaded by FF at those times. (The server is probably being run by an Ohio State graduate )
    OT
    Go Blue!
    Note: using Quicktime for you slide presentation will exclude all those users from the dark side who don't have Quicktime installed on their PCs. You might look into a java based method for the presentation. There are lots of them out there. With the free Jalbum you have over 100 themes/skins to choose from.
    Message was edited by: Old Toad

  • Custom FLV player query

    Dear all
    I have created a custom FLV player and i would like to embed
    it into our web site. The problem I have is I want it to be
    dynamic. So I can link lots of videos to it rather than export just
    one movie with the player from flash and embed that each time into
    the website. I want the player as a permanent entity and then link
    to it via a database with a list of FLV videos. I know about
    Flashvars and creating those variables in the javascript file but I
    want to know do I need to or can I type a query into the source
    field in the parameters of the .fla file to link to a database full
    of the videos. Rather than place in that source field the name of
    one .flv movie. Thats where I am stuck. I am pretty new to flash. I
    am using progressive download by the way.
    Our website is coded with classic ASP/CSS and we use access
    for databases.
    Many thanks
    Rob

    Thanks so much for your help, I am probably going to sound
    thick but how would I get flash to read the xml, I guess I would do
    it with actionscript but do you have any pointers or tutorials you
    know of where it involves asp and a database etc.
    Cheers

  • What is the JavaScript function to disable the auto-loop feature for the Video Player Plus Widget?

    I have PDF's with links to streaming video that play using the native video skin. The Video Player Plus widget auto starts the video by default.
    Can someone please tell me how to disable this???
    Thanks in advance!

    And in CS4, if there is not a matching Preset, you can choose the Desktop Preset, which will allow you to customize nearly every attribute to match your source footage. The name is a bit of a misnomer, but has been around for a long time. I would have called it the "Custom Preset," but Adobe never called.
    Good luck,
    Hunt
    PS - I just learned something new about CS5 from Curt, because of your question - thanks!

  • Editing flash video player templates

    Hi!
    I am having trouble creating editable Video player Templates in Flash Pro. cs5 and Flash Catalyst.
    By editable I mean, other users can edit the video templates and upload and play  their videos with it.
    Can anyone help me please?!
    Thanks!

    So exactly what is the problem?
    What have you tried? What has worked? What hasn't worked?
    Do you have a working model, even if it's not "editable"?
    Have you built other custom video players? can you show links to them?
    How is the editing expected to be done? via xml or what?
    Are just the skins editable or are there playlist styles that the user can choose from? such as scrolling horizontal menu or vertical menu?
    Fill us in and maybe we can provide better help.
    Best wishes,
    Adninjastrator

  • Custom Video Generation and Streaming

    Hi,
    Suppose I have a server-side component which generates video
    on-the-fly. For example, it could be a component which creates a
    short sequence of video from a fly through of a 3D model. I want to
    be able to have a client browse to my website, click on a link and
    view the video. Clicking on the link would create a new video from
    the 3D model and stream it to a flash video player within the
    webpage. I want the video generation to be done server-side.
    Is this possible by writing a custom application for Flash
    media server? Do I have to write this component in server-side
    ActionScript or could I write it in C++ and some-how interface to
    it from a server-side ActionScript application?
    As you can guess, I'm a bit of a novice at all this flash
    stuff but I'm working on a project which requires it.
    Thanks a lot!
    Nick.

    Unless the video is completely downloaded to the iMac you can not rule out the Internet connection.
    Since it plays all other video with no problem the downloading stream would seem to be the source of the problem.
    I had cable modem and it is no guarantee of a fast connection. Also even having a fast connection on one end doesn't mean that the source of the video is pushing it all that fast.

  • Timecode on video player

    Is there anyway to get a timecode into a video player without
    using netconnection/stream (i.e. using the flv playback component
    and captioner?)

    You have to read time elapsed inside some listener (enter
    frame or timer) directly from the instance of the NetStream class
    time property: stream.time. I understand FLVPlayback does it for
    you (I have never worked with it - I write my own playback routine)
    but, still, you have to somehow get it out of FLVPlayback instance.
    But you, perhaps, know that already.
    According FLVPlaybackCaptioning documentation (
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.h tml)
    this componenet works with FLVPlayback only:
    "The FLVPlaybackCaptioning component downloads a Timed Text
    (TT) XML file and applies those captions to an FLVPlayback
    component to which this component is partnered."
    It seems you cannot use it with your custom playback routine.
    Why not to write your own close caption component? It is easy
    - just parse XML and display text related to a particular time
    stamp. Anyway you read the current time of the playback - a couple
    more lines of code will not hurt.

Maybe you are looking for

  • FileMonitor issue for date time stamp change.

    Hi I have an app that runs with a minor issue and I am looking for some insight for a workaround or code change. I have a File Monitor that checks a specific directory every second. Users send a batch run to this directory throughout the day. There a

  • Internal table with an internal table

    Hi, I have following definition: TYPES:  BEGIN OF ty_pos,              numbertype(29)            TYPE c,              number(29)                TYPE c,              END OF ty_pos. DATA: gt_pos TYPE STANDARD TABLE OF ty_pos,       gs_pos LIKE LINE OF

  • Error message " filename is not a valid Win32 application"

    I have StarOffice 8 update 11 on a PC running Windows XP. Every time I try to open any StarOffice file from my file manager, I get the error " <filename> is not a valid Win32 application." But I can open the file fine when I do it from within StarOff

  • High resolution output for Windows Media Player?

    Im trying to play a high resolution video (1280x720), that was edited on Premiere Pro, through my media player and/or the Power DVD (on both a xp and a vista computer). I made a multiplexed MP2 (blue ray) file, but it would not play in either program

  • HT200161 Problem activating FTP and a few thoughts on FM 7 server

    My current problem... The document Ricoh points to http://support.apple.com/kb/HT4704?viewlocale=en_US When trying to run the line in paragraph 1 of this document I get an error: "dseditgroup -o create -n /Local/Default -u ladmin com.apple.access_ftp