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

Similar Messages

  • Adding subtitle functionality to my custom flv player

    Hey all,
    I have a custom flv player and i'm slowly adding more functionality to it as I go along but i've hit a wall.
    I want to add a subtitle button that toggles between show/hide. I've seen on the internet that the best way is to use an XML file (holding the script, times etc.), which I have no problem writing.
    I'm having problems trying to replicate the 'FLVPlaybackCaptioning' component (in Flash CS3) in to my custom flv player. I.E. Adding the right actionscript to my toggle button.
    Can anybody help me as I just can't find anything on the internet.
    Any advice is welcome!
    Thanks
    egr103

    Well the problem is that I can't find any tutorials or help about getting a subtitle toggle button into my custom flv player, an example of which can be found here: http://idl.newport.ac.uk/dev/customplayer.html
    I don't like using the FLVPlayback component built into flash as it is too clunky but at the moment that is the only way I can get subtitles to toggle on and off (using the FLVPlaybackCaption component).
    Ideally I would like to use an XML file to do the subtitles. Any ideas?

  • Best approach to dynamic custom flv player

    I am currently working on a custom flash player. After
    working on several working versions where I simply used
    actionscript to delegate the actions of my custom player.
    I am now working on a more dynamic ready flashplayer that
    will need to be embeddable. Should I make a .swf specificaly for
    the player using the flash player SkinFLA examples as an outline?
    The idea is to have a player that embeds like youtube, any
    suggestions or tutorials to look over? Also, this player needs to
    have playlist functionality, but it needs to be able to scope to
    anyone. I could have users register and then create an XML that
    references their playlist, but it seems like there may be better
    options. Just looking for some discussion and debate over player
    best-practices....

    Well the problem is that I can't find any tutorials or help about getting a subtitle toggle button into my custom flv player, an example of which can be found here: http://idl.newport.ac.uk/dev/customplayer.html
    I don't like using the FLVPlayback component built into flash as it is too clunky but at the moment that is the only way I can get subtitles to toggle on and off (using the FLVPlaybackCaption component).
    Ideally I would like to use an XML file to do the subtitles. Any ideas?

  • Custom FLV Player is Killing me. . .

    Hi All
    Right, where do i start - i have just spent the last 3
    months learning HTML and CSS for a website that i run. We are a
    video production company, and we need to have a bank of videos that
    will be updated on an almost weekly basis.
    I want to use some sort of flash video set up, where the main
    video plays and there is a slideshow of other videos below -
    wrapped up in a XML file.
    BUT - I can't find any up to date tutorials on making your
    own FLV player that is compatible with XML style lists. When i say
    make my own FLV player, i mean i have made a skin in PS and
    imported it to Flash. I can import a video that is Actionscript
    controlled - but from there, all the tutorials i come across seem
    to use old code that CS3 doesn't understand.
    This is a big question - but any ideas?
    Thanks
    JP

    thewakeplace.com wrote:
    > Hi All
    >
    > Right, where do i start - i have just spent the last 3
    months learning HTML
    > and CSS for a website that i run. We are a video
    production company, and we
    > need to have a bank of videos that will be updated on an
    almost weekly basis.
    > I want to use some sort of flash video set up, where the
    main video plays and
    > there is a slideshow of other videos below - wrapped up
    in a XML file.
    >
    > BUT - I can't find any up to date tutorials on making
    your own FLV player that
    > is compatible with XML style lists. When i say make my
    own FLV player, i mean i
    > have made a skin in PS and imported it to Flash. I can
    import a video that is
    > Actionscript controlled - but from there, all the
    tutorials i come across seem
    > to use old code that CS3 doesn't understand.
    >
    Just set the export to Flash 8 AS 2.0 version and you will be
    set. All the flv players
    will work for you.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Custom flv player works great except for Scrubber (F*)

    Everything works great except when I click the loadbar,
    instead of operating my scrubber script it just stops. Can anyone
    see a problem with this code? Must be a typo somewhere but I can't
    find it! Scrubber code at bottom.
    //-------NETCONNTCTION SETUP--------------
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    //-------NETSTREAM SETUP--------------
    var ns:NetStream = new NetStream(nc);
    ns.onStatus = function(info) {
    if(info.code == "NetStream.Play.Start") {
    progressBar.onEnterFrame = videoUpdate;
    if(info.code == "NetStream.Play.Stop") {
    delete progressBar.onEnterFrame;
    ns.onMetaData = function(info) {
    ns.duration = info.duration;
    //-------ATTACHING NETSTREAM--------------
    video.attachVideo(ns);
    //-------PLAYING EXTERNAL FLV--------------
    ns.play("curse.flv");
    //-------REWIND BUTTON--------------
    rewind.onRelease = function() {
    ns.seek(0);
    //-------PLAY PAUSE TOGGLE--------------
    playPause.onRollOver = function() {
    if(this._currentframe == 1) {
    this.gotoAndStop("pauseOver");
    else {
    this.gotoAndStop("playOver");
    playPause.onRollOut = function() {
    if(this._currentframe == 10) {
    this.gotoAndStop("pause");
    else {
    this.gotoAndStop("play");
    playPause.onRelease = function() {
    if(this._currentframe == 10) {
    this.gotoAndStop("playOver");
    ns.pause(true);
    else {
    this.gotoAndStop("pauseOver");
    ns.pause(false);
    //-------LOADBAR--------------
    loadbar.onEnterFrame = function() {
    this._xscale = (ns.bytesLoaded/ns.bytesTotal)*100;
    if(this._xscale == 100) {
    delete this.onEnterFrame;
    //-------VIDEO UPDATE--------------
    function videoUpdate() {
    progressBar._xscale = (ns.time/ns.duration)*100;
    //-------VIDEO SCRUBBER--------------
    loadbar.onPress = function() {
    progressBar.onEnterFrame = videoScrub;
    loadbar.onRelease = loadbar.onReleaseOutside = function() {
    progressBar.onEnterFrame = videoUpdate;
    function videoScrub() {
    var dist:Number = (_root._xmouse-loadbar._x)/loadbar._width;
    ns.seek(Math.floor(ns.duration*dist));
    progressBar._xscale = (ns.time/ns.duration)*100;
    }

    Check the enclosed .AppleDouble folder and files. If that doesn't help, stop netatalk, delete the volumes CNID databases and restart.
    Cheers!

  • FLV Player

    I use Sorenson to create the FLV files... and it allows you
    to create SWF templates to play and stop the files... But the
    tutorial I got didnt work and most of the var names where wrong...
    I don’t care if I make it that way or not...
    What I really want is to be able to create a custom looking
    flv player... one that streams the flv files... can anyone help..
    Does anyone have one I could look through and figure out?...
    Thanks for your help!

    Read this
    http://www.flashjester.com/?section=faq&cPath=14_53#385
    and also look here
    http://www.flashloaded.com/flashcomponents/flvplayerpro/
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • FLV player component. Open Source/commercial options?

    I'm returning to a project I've had on hold for a bit. We're
    now receiving
    .flv files from our video team and we need to displaying them
    on our site.
    Can anyone recommend some Flash FLV player components? Open
    source
    preferred, but commercial or freeware would be OK too if
    highly recommended.
    I've looked at OSFLV but that appears to require PHP back end
    scripts. Our
    site is ASP.net so likely wouldn't work.
    Ideally, it'd be a player that we could passe the FLV info to
    via the HTML
    (so that we could incorporate the embed markup automatically
    via our CMS
    back end).
    -Darrel

    On Wed, 20 Feb 2008 08:23:33 -0600, "darrel"
    <[email protected]>
    wrote:
    >I don't have flash. Hence me not having the built-in
    player.
    >
    >I could get flash, but we don't really do any flash
    production here. All FLV
    >files come to use from outside, they're then hosted on an
    outside server,
    >and we just need to add a player to our web site to show
    them.
    I beleave first of all you must decide how will you show your
    videos.
    Do you have FMS? Or is webserver the only you have for your
    site? If
    you don't have FMS and don't like to buy its license, then
    the only
    possible way is to use HTTP Streaming or simple progressive
    download.
    And you must seek for a player depending on your choice of
    the video
    delivery method. HTTP Streaming is a great choice if you
    haven't FMS.
    Though you need some scripting language/database engine at
    your web
    server and some custom SWF (Flash FLV Player). Standard UI
    components
    like FLVPlayback will not work with HTTP Streaming. Though it
    is not
    so dificult to create such player using any Flash MX version
    >= 7.
    You can find some brief description of HTTP Streaming if
    you'll try to
    search in Google:
    http://www.google.com/search?complete=1&hl=en&q=HTTP+streaming+technology+for+video%2Faudi o+delivery
    HTH!

  • New skins for flv player

    Hi
    Id like to find some free custom skins usable with
    Dreamweaver for flv
    player
    those 9 available are not good for my boss
    Please help me out

    On Tue, 5 Dec 2006 16:36:44 +0200, "katerina katz"
    <[email protected]> wrote:
    >Hi
    >Id like to find some free custom skins usable with
    Dreamweaver for flv
    >player
    >those 9 available are not good for my boss
    >Please help me out
    >
    http://www.adobe.com/devnet/flash/articles/flv_tutorial_pt2_02.html
    Steve
    steve at flyingtigerwebdesign dot com

  • FLV Player with Dynamic Playlist

    So this is the first time I've experimented with a Dynamic
    Playlist in an FLV Player and I'm learning a lot. I found a
    tutorial on the Adobe site similar to what I'm looking to create.
    [URL="
    http://www.adobe.com/devnet/flash/articles/prog_download.html"
    one is for Progressive Download, which I want.[/URL]
    The same person also wrote one for [URL="
    http://www.adobe.com/devnet/flash/articles/video_player.html"
    I only mention that, because in the Streaming version, the videos
    have the standard Adobe video controls in them, and the Progressive
    tutorial does not. Usually I just create my own controls and link
    it to the video component that I'm using, but this tutorial is
    different than I normally roll.
    In the library there is an object type "Video", which I can't
    recall ever seeing before. If I delete it from the stage my videos
    won't play, so it's definitely important. It doesn't give
    parameters like the FLVPlayback does so I can't choose controls on
    it. I don't know if there is a way.
    Or maybe I need to build my own controls and find a way to
    tie them into what we have here, but that would be stretching the
    bounds of my knowledge, and I was hoping to have this up soon to
    send to a potential employer.
    What I'm looking for is some help to get pointed in the right
    direction to just add the controls to the player in that tutorial.
    If there is an "easy button" somewhere that I can push that'd be
    great. If I need to get dirty I'm willing to, but I'm a bit lost
    right now.
    Thanks in advance for any help!

    Search for JW player on Google and look at that.
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. - www.flashjester.com
    "This has been one of the most impressive and thoroughly
    pleasant
    experiences of customer support I have ever come across -
    astounding!"
    Director - hedgeapple

  • Creating a custom Flash Player

    I am totally new to Flash Builder and currently downloading the trial version. While I am waiting, is this the correct product for me?
    I have a VP6 Alpha Channel .flv movie (transparent background). I would like to create a custom flash player for my website to display and control this movie.The player needs the following properties:
    1. Play the movie transparently (using "wmode"?)
    2. Play, pause, volume and exit buttons on the control bar
    3. Autohide control bar
    4. Logo / text on the control bar
    5. Ability to unload itself after the movie ends
    Is this the right product for me? If so, any links on how to create this player would be useful. If not, which product do I need?
    Many thanks for your help.

    This appears to be a Flex question. Please try the Flex frums here http://forums.adobe.com/community/flex/flex_general_discussion

  • Flv player works locally but not when uploaded

    Another day, another issue...
    I have a flash movie that includes an flv player with previews and buttons. It reads the content from an xml file.
    It works without problem when I test it locally. Trouble is when I upload it, everything displays correctly but the flv movie file doesn't play. Here's the test link:
    http://www.swsoftware.com/ncjhs/assets/video/flvplayer.html
    XML file is http://www.swsoftware.com/NCJHS/Assets/Video/video.xml
    Flash file is http://www.swsoftware.com/ncjhs/assets/video/flvplayer.fla
    Anyone have any suggestions? I'm new to flash and this forum has been a tremendous help in resolving my (somewhat numerous) problems.
    Sam

    When I tried to view the posted url I got the following
    errors in the order I have listed them.
    CSInit is undefined Line 23
    Line 75 Object Expected
    Line 66 Object Expected
    My Platform.
    IE 7
    Windows XP Pro

  • My own built fullscreen mode flv player is not working in Mac OS

    I built a flv player, it is just a normal video player with a
    fullscreen mode.
    The video player is work fine in Window IE, FF, and Safari.
    But not not working in Mac OS X, leopard & tiger &
    May I know what might cause this problem?
    I m usng action script 3, flash cs3 & all my browsers
    already upgrade to latest version of Flash Player.
    Help!!!

    I am running Mac OS X 10.10.1 Yosemite and iPhoto Version 9.6 (910.29). Automatic updates in the Mac App Store is turned on for my iMac and it shows no updates available. I was told directly by Apple Support on the date that I wrote this article (Nov 8, 2014) that there were no Canon drivers and photo transfer software that worked with Yosemite. I was told by Canon that the workaround was to change the communication method from Normal to PTP on the camera, which did provide a solution. At that time I was running Mac OS X 10.10 (because the 10.10.1 update was not yet available) and the most up-to-date version of iPhoto for Mac OS X 10.10 that was available at that time, at least per the Mac App Store. I was told by Canon that the workaround was to change the communication method from Normal to PTP on the camera, which did provide a solution.
    With the Mac OS X 10.10.1 update if the camera is in PTP communications mode the thumbnails now appear in the Import screen in iPhoto almost immediately. If the camera is returned to Normal communications mode; however, it takes forever for the thumbnails to appear. I have been waiting 10 minutes and iPhoto has generated only 14 thumbnails. So it appears that there is still something not working properly between the original Canon EOS Digital Rebel and Mac OS X Yosemite 10.10.1 when the communications mode on the camera is set to Normal.

  • A collection of FLV downloader, FLV player, and FLV converter for Mac

    [http://www.pavtube.com/christmas2009/]
    A collection of FLV downloader, FLV player, and FLV converter for Mac
    Are you prepared to download FLV videos from YouTube, Google Video, metacafe, Yahoo! Video, Reuters.com, and many other video websites to play on your Mac or portable players, or do some further editing with certain editors? In my experience, assuming you have this idea, you must take advantage of three kinds of tools, including FLV downloader, FLV player, and FLV converter to achieve the goal.
    Of course, I am not speaking this to depress you, but to share my collections of these tools to show my kindness. Sure, just for people who have these needs.
    At first, I’ll introduce you several FLV downloaders for Mac, I have tried all of them, and basically they can achieve my goal of downloading FLV videos online.
    Free FLV downloaders for Mac:
    Web Video Downloader for Firefox
    Free Video Downloader for Mac
    Free YouTube Downloader for Mac
    I also know some free FLV players, and recommend them to you here, hope they can assist you to play FLV videos on your Mac smoothly.
    Free FLV player, Mac OS X:
    Adobe Media Player
    Wimpy FLV Player
    QuickTime, after installation of the Perian video plugin
    SWF & FLV Player
    CorePlayer
    (Tip: the above pieces of software can easily be searched in Google, so I do not give you the links here. I’m sure you can get them with ease.)
    Well, we have gone through the FLV downloaders and FLV players in the above passages, now it’s time to introduce you a FLV converter for Mac. This program I recommend is Pavtube FLV Converter for Mac, which can perfectly convert FLV videos to a wide range of video formats, so that you can do whatever you like with the resulted videos, such as playing on your iPod, iPhone, BlackBerry, PSP, Apple TV, etc. or exporting to iMovie, Final Cut Pro and Final Cut Express to do further editing, or doing something else as you like. But how to use it? You may ask me. Take it easy, a step-by-step instruction is involved in the following part.
    1. Download, install and run this program
    A sky-blue interface will be shown to you as follow:
    2. Add files, set output format and destination folder
    Input FLV files to it by clicking button “Add”, and select a format as the output format in the drop-down list of “Format”, meanwhile, you can press “Browse” to specify the destination folder or just use the path set by default.
    3. Set advanced settings
    Click button[b] “Settings”, the following interface will pop up. You can change the parameters like screen size, bit rate, frame rate, sample rate, etc. to optimize the output videos.
    4. Convert
    This FLV Converter for mac can definitely complete the conversion at a swift speed with excellent quality, also it do not have the problem of audio-video out of sync. Therefore you need not worry about these issues. Moreover, if you want to add watermark as your own logo or reserve your copyright, you can totally do it with this program.
    Ok, the introduction to the three kinds of tools which you may need while dealing with FLV videos is over, sincerely hope they can deliver you useful information, because you know, it’s my original intention.

    Hi Greg,
    So if I understand correctly, your findings are:
    Flash Player 10.1.85.3 + Flash Media Interactive Server = Jerky Video
    Flash Player 10.0.x.x + Flash Media Interactive Server = Smooth Video
    Flash Player 10.1.85.3 + Wowza = Smooth Video
    And what about Flash Player 10.0.x.x + Wowza?
    Also, if you could check the network traffic to confirm if it's Flash Player causing the issue or it is receiving it like that from FMIS.
    Cheers
    --Vikas

  • Customer Aging Report Query (without invoices offset by incoming payment)

    Hi All Experts,
    May I know is there any field from JDT1 mention which invoices is already offset by the Incoming payment or AR Credit note? Because I do not want those invoices that already offset by incoming payment appear at the Customer Aging Report. Meaning, the data appear in the Customer Aging Report is only show those invoices that yet to pay by the customer. Kindly give some advise on it. Thanks a lot.
    Thanks and regards,
    Angie Ng

    Hi David,
    Thanks for your suggestion. I have try it, but all of my JDT1.IntrnMatch is in 0 value. Meaning in my situation it is none of any reconcilliation making. But from my SBO window, i manage to see that actually this incoming payment is pay for which invoices. Problem is it is difficult for me to do the possiblity logic that might be happen in my Customer Aging Report Query. Please give some advise that how to show only those invoices yet to pay? The current query will show all the data no matter the invoices or credit memo has been offset.
    select OCRD.cardcode 'Supplier Code',OCRD.cardname 'Name',sysdeb  'Debit GBP',syscred 'Credit GBP',
    case JDT1.transtype
    when '13' then 'INV'
    when '14' then 'AR CN'
    when '24' then 'INCOMING'
    else 'Other'
    end 'Type',
    Ref1,
    fccurrency 'BP Currency',
    CONVERT(VARCHAR(10), refdate, 103)'Posting Date' ,
    CONVERT(VARCHAR(10), duedate, 103) 'Due Date',
    CONVERT(VARCHAR(10), taxdate, 103) 'Doc Date' ,
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 < 31
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "0-30 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 30
    and (datediff(dd,refdate,current_timestamp))+1< 61)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "31 to 60 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 60
    and (datediff(dd,refdate,current_timestamp))+1< 91)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "61 to 90 days",
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 > 90
    then
    case
    when syscred= 0 then sysdeb
    when sysdeb= 0 then syscred * - 1
    end
    end "90 + days"
    from JDT1,OCRD where JDT1.shortname = OCRD.cardcode and cardtype = 'c' and intrnmatch = '0'
    ORDER BY OCRD.CARDCODE, taxdate

  • Playing SWF files in FLV Player

    Hi,
                   I would like to know whether swf files can play in an FLV Player or not. If not possible, is there any option for developing an independent swf player. If so, please tell me the technique that can be used to develop swf player.
    Regards,
              Sreelash.

    Thank for your reply friend. I understood what u said. Actually the requirement for the client is to stream swf file as streaming flv file. So I think, in the server side we have to use converter. I meant, if the client put the swf files in the server, the server side program calls the converter before streaming to the client side.
    The functionality what I meant is following:
    1) The client request for an swf file.
    2) In the server side, it is placed as swf files.
    3) Then, programmatically the server side code invokes the converter and convert the swf file to flv file before          streaming.
    4) This is what I meant the use of converter.
    I hope you understood what I meant. Can I have your mail id please. Because in forum not everyone reply for the doubts. Also I am the only action script programmer in my company and I have only 5 months experience. My mail id is [email protected]
    Thanks and Regards,
                  Sreelash.S.

Maybe you are looking for

  • I-pod Not showing up in i-tunes

    I GOT MY I-POD YESTERDAY AND INSTALLED I-TUNES I GOT THE MUSIC INTO I-TUNES WELL THEN I NOTICED THAT THE I-POD ISN'T IN I-TUNES SO THEN I CHECKED THE PREFERENCES AND IT SAYS NO I-POD HOOK UP I TRIED EVERYTHING THE SAD PART MY COMPUTER SAYS THE I-POD

  • Time capsule abd apple tv

    how to directly stream movies from time capsule to apple tv without using pc and iTunes

  • Need datetime in this format "Tue, 5 Feb 2008 15:31:20 +0100"

    Hi, i have to export Date and Time to a string in this format: "Tue, 5 Feb 2008 15:31:20 +0100" DayByName, DayByNumber Month Year HH:MM:SS Timezone Thanks for help.

  • How do I get bookmarks toolbar to reappear?

    the toolbar has vanished and is needed so it can be used. I've seen this question asked, but have not seen any helpful answer.

  • Long loops

    Hi, I'm trying to export a MC to JPG format using PHP. The procedure calls for a nested loop which reads each pixel and catenates its color value in an array in order to be sent to PHP. After the loop runs for a few seconds, I get the "Flash running