Making QtWebkit support HTML5 video and audio

For those who don't know, HTML5 enables most current browsers to play videos and audios without the need of any plugin. QtWebkit supports this feature, so browsers using it such as Rekonq and Arora should support it too. However on Arch Linux this does not work outside of the box.
I've tried to make this work and made a little progress, and I'm wondering if anyone has made similar attempts, have suggestions, or are willing to try this out. What I've done basically is to compile Qt with Phonon, and then remove the Phonon files when building the package, so that it uses the Phonon that comes with KDE. I included the PKGBUILD below, and you just need to copy the extra/qt directory from abs, and override the PKGBUILD or apply the patch.
I also installed phonon-vlc-qt from AUR, which according to this post contains some fixes to support HTML5 video/audio. However neither this nor the default gstreamer backend works for me. With vlc the vidoe doesn't play, and with gstreamer the browser crashes. To try different backends for Phonon, open KDE's System Settings - Multimedia - Backends, and use the Prefer and Defer buttons.
Some links for testing HTML5 video and audio:
http://html5test.com Only uses JavaScript to ask the browser if it supports the feature. What I've done does make these tests pass.
http://html5video.org
http://youtube.com/html5 Join the beta, and then open some youtube videos, and look for HTML5 in the player's control bar
The PKGBUILD:
# $Id: PKGBUILD 98480 2010-11-09 22:17:20Z andrea $
# Maintainer: Andrea Scarpino <[email protected]>
# Contributor: Pierre Schmitz <[email protected]>
pkgname=qt
pkgver=4.7.1
pkgrel=2
pkgdesc='A cross-platform application and UI framework'
arch=('i686' 'x86_64')
url='http://qt.nokia.com/'
license=('GPL3' 'LGPL')
depends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus'
'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
'xdg-utils' 'hicolor-icon-theme')
optdepends=('postgresql-libs: PostgreSQL driver'
'libmysqlclient: MySQL driver'
'unixodbc: ODBC driver'
'libxinerama: Xinerama support'
'libxcursor: Xcursor support'
'libxfixes: Xfixes support')
makedepends=('mesa' 'postgresql-libs' 'mysql' 'unixodbc' 'cups' 'gtk2')
install="${pkgname}.install"
options=('!libtool')
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz"
'assistant.desktop' 'designer.desktop' 'linguist.desktop'
'qtconfig.desktop')
md5sums=('6f88d96507c84e9fea5bf3a71ebeb6d7'
'fc211414130ab2764132e7370f8e5caa'
'85179f5e0437514f8639957e1d8baf62'
'f11852b97583610f3dbb669ebc3e21bc'
'6b771c8a81dd90b45e8a79afa0e5bbfd')
build() {
unset QMAKESPEC
export QT4DIR=$srcdir/$_pkgfqn
export PATH=${QT4DIR}/bin:${PATH}
export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
cd $srcdir/$_pkgfqn
sed -i "s|-O2|$CXXFLAGS|" mkspecs/common/g++.conf
sed -i "/^QMAKE_RPATH/s| -Wl,-rpath,||g" mkspecs/common/g++.conf
sed -i "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" mkspecs/common/g++.conf
./configure -confirm-license -opensource \
-prefix /usr \
-docdir /usr/share/doc/qt \
-plugindir /usr/lib/qt/plugins \
-importdir /usr/lib/qt/imports \
-datadir /usr/share/qt \
-translationdir /usr/share/qt/translations \
-sysconfdir /etc \
-examplesdir /usr/share/doc/qt/examples \
-demosdir /usr/share/doc/qt/demos \
-largefile \
-plugin-sql-{psql,mysql,sqlite,odbc} \
-system-sqlite \
-xmlpatterns \
-phonon \
-phonon-backend \
-svg \
-webkit \
-script \
-scripttools \
-system-zlib \
-system-libtiff \
-system-libpng \
-system-libmng \
-system-libjpeg \
-nomake demos \
-nomake examples \
-nomake docs \
-no-rpath \
-openssl-linked \
-silent \
-optimized-qmake \
-dbus \
-reduce-relocations \
-no-separate-debug-info \
-gtkstyle \
-opengl \
-no-openvg \
-glib
make
package() {
cd $srcdir/$_pkgfqn
make INSTALL_ROOT=$pkgdir install
# install missing icons and desktop files
for icon in tools/linguist/linguist/images/icons/linguist-*-32.png ; do
size=$(echo $(basename ${icon}) | cut -d- -f2)
install -p -D -m644 ${icon} ${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/linguist.png
done
install -p -D -m644 src/gui/dialogs/images/qtlogo-64.png ${pkgdir}/usr/share/icons/hicolor/64x64/apps/qtlogo.png
install -p -D -m644 tools/assistant/tools/assistant/images/assistant.png ${pkgdir}/usr/share/icons/hicolor/32x32/apps/assistant.png
install -p -D -m644 tools/designer/src/designer/images/designer.png ${pkgdir}/usr/share/icons/hicolor/128x128/apps/designer.png
install -d ${pkgdir}/usr/share/applications
install -m644 ${srcdir}/{linguist,designer,assistant,qtconfig}.desktop ${pkgdir}/usr/share/applications/
# install license addition
install -D -m644 LGPL_EXCEPTION.txt ${pkgdir}/usr/share/licenses/qt/LGPL_EXCEPTION.txt
# Fix wrong path in pkgconfig files
find ${pkgdir}/usr/lib/pkgconfig -type f -name '*.pc' \
-exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \;
# Fix wrong path in prl files
find ${pkgdir}/usr/lib -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
# Remove phonon files which are installed by KDE
rm -r ${pkgdir}/usr/{include/phonon/,lib/libphonon*,lib/pkgconfig/phonon.pc}
Diff from qt's PKGBUILD in ABS:
--- PKGBUILD.orig 2010-12-15 13:18:19.000000000 -0500
+++ PKGBUILD 2010-12-15 13:19:15.000000000 -0500
@@ -57,8 +57,8 @@
-plugin-sql-{psql,mysql,sqlite,odbc} \
-system-sqlite \
-xmlpatterns \
- -no-phonon \
- -no-phonon-backend \
+ -phonon \
+ -phonon-backend \
-svg \
-webkit \
-script \
@@ -109,4 +109,6 @@
# Fix wrong path in prl files
find ${pkgdir}/usr/lib -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
+ # Remove phonon files which are installed by KDE
+ rm -r ${pkgdir}/usr/{include/phonon/,lib/libphonon*,lib/pkgconfig/phonon.pc}
Last edited by hagabaka (2010-12-15 22:11:46)

Use a minidisplay/HDMI cable for video:
http://www.cnaweb.com/6-mini-displayport-male-to-hdmi-male-cable.aspx?gclid=CMbn pNem57wCFRQS7AodzDQACg
A 2009 MBP does not support audio via HDMI so you will have to tap the Audio Output port.  Use a 3.5 mmRCA plugs and tap the RCA audio inputs on the TV with a cable such as this:
http://www.monoprice.com/Product?c_id=102&cp_id=10218&cs_id=1021817&p_id=9768&se q=1&format=2&utm_expid=58369800-11.R-enhtUGRrSdHz5vzpVS2g.0&utm_referrer=http%3A %2F%2Fwww.monoprice.com%2FCategory%3Fc_id%3D102%26cp_id%3D10256%26gclid%3DCM2Vro yn57wCFZLm7AodHjkAlQ
Ciao.

Similar Messages

  • FME Firewire Video and Audio Support(not from Camera)

    I can't seem to find any definitive answer on weather FME can
    support both video and audio from a single Firewire connection that
    is coming from an analog to digital Firewire converter box. I want
    to take the analog audio and video feed, convert it to a Firewire
    feed (using a Canopus DV converter) and feed that into a laptop.
    Seems like that should work and both audio/video would be
    present...
    That being said, I have found a few conflicting reports on
    weather or not both the audio and video will be recognized. I also
    note that others have been having issues in FME with PCI cards (no
    audio when it should be there) so I'm curious if anyone has tried
    Firewire (not from a camera). Will it work in FME v2.5+? If not, is
    there an elegant laptop analog to digital conversion solution (that
    doesn't require using the crapy mic in or line in ports)? (RCA
    connectors would be preferred.)
    Thanks so much!
    P.S. I'm disappointed with Adobe's lack of support on this
    encoder. They claim Firewire is supported but I've only found a few
    3rd party sources that say 'video only' and nothing concrete at
    that (even in the downloadable manual). I'm also disappointed at
    Adobe's lack of e-mail support for 'pre-sale' product questions.
    Not supper great customer service!

    FME should support audio and video from Firewire
    source.

  • ITunes 11.02 update - video and audio no longer working

    I updated to iTunes 11.02 last night.
    Now, I can't play any video or any audio files, whether using iTunes or Quicktime. Even online Vimeo and YouTube content won't play. Clicking the play button does nothing - the movie or song's progress indicator doesn't move.
    In Sytem Preferences > Sound: I get the following message for  input and output devices "No input device found" and "No output device found"
    There doesn't seem to be a way to check if the graphics card is recognised but it's still showing up in the system profiler.
    Looks like the iTunes update has completely nixed my laptop's video and audio capabilities. Does anyone have any recommendations?

    I do a lot of SONY HRD FX1 native 1080i HDV capture with Final Cut Pro 5 on my PowerBook 1.3 GHz G4..
    Before Apple started supporting HDV, getting the audio and video lined up was such a nightmare that it wasn't even worth working on projects.
    My material works great inside FCP 5, but I have had similar problems to what you describe when making the DVDs
    However, I use DVD Studio Pro and was able to move the audio relative to the video slightly to get the most important parts to line up. However if your audio and video clips aren't the same length then you will have variable slippage for long clips.
    I have been using MPEG Power Professional (Heuris Inc) to do my MPEG2 video encodes as well as my audio encodes and I haven't had the problem lately.

  • How can i stream video and audio from macbook air to my tv?

    how can i stream video and audio from macbook air to my tv?

    Wirelessly: you need an AirPlay - enabled device such as an AppleTV.
    Wired: if your TV has an HDMI port, you need a Thunderbolt to HDMI adapter such as this one:
    Mini DisplayPort to HDMI® Adapter w/ Audio Support
    If your TV does not have an HDMI port you will need a converter that will convert HDMI input to whatever input your TV requires.

  • Kichat: FAQ 3 - How do I get Video and Audio Chats with PCs ?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    How do I get Video and Audio Chats with PCs ? iChat FAQ 3 (Updated 3/4/2009)
    Applies to iChat 2.x, iChat 3.x and iChat 4.x to any version of AIM on a PC before AIM 6.1
    See bottom section on AIM 6.5 and 6.8 on XP and Vista.
    This piece is designed for those trying to connect Mac to PC for Video and Audio chats. Any iChat version Panther and up.
    Glossary For This FAQ
    This bit is designed for clarity.
    Video is the sending and /or receiving of pictures and sound.
    Audio is the sending and or receiving of sound only.
    One-Way is the ability to start either an Audio or Video chat from one end to a recipient who can not match your capabilities (or Vice Versa)
    What is needed
    At the Mac end
    A Mac running OS 10.3.x and iChat AV ver 2.1 or 10.4 plus iChat 3 or Leopard and iChat 4
    A DSL/Cable/Fibre (Broadband) connection of at least an up link speed of 256kbs.
    An AIM , @mac.com or MobileMe (@me.com) account name.
    (hosting Multiple person Mac to Mac AV chats requires higher specs and broadband uplink speed).
    At the PC end
    1 PC running windows XP (home or Pro). THIS A MUST
    The AIM Standalone Application, currently at ver. 5.9 at this link. AIM (the Site) now call this version Classic and it cannot be Installed On Vista
    Note: there is also Trillian which has a Pro version for $25 that can also Video and Audio chat. The Basic version just Texts and Audio Chats (AIM does not Audio chat)
    Some need the aimrtc12.exe file from Here Mostly Earlier than XP or Pre Service Pack 2 XP versions of Windows
    An AIM account/screen name (AOL or Netscape count as well)
    Service Pack 2 info. This info will allow the PC user to enable AIM thorough the XP Firewall. The Windows Firewall did not exist as such before this.
    Between both of you.
    At least one camera (Mac end works better)
    A sound input device (the camera, if it has one is ok)
    Your Buddies screen/account name in each others Buddy Lists
    Other tweaks
    For some people, using AIM on a PC, may also have to make sure their preferences (properties) are set in the AIM Buddy list, for their camera and /or Mic. (Tuning at Message 570)
    This is an icon button lower right on the Buddy List marked "Prefs" (AIM 5.5). This leads to the Preferences. Drop down the list until you read Live Video. Click on this. In the new window that opens click the button that says Tuning Video and Audio. Follow the instructions in the wizard that opens up. Access in AIM 5.9 for this is in the My AIM menu at the top of the Buddy list and then Options
    To Start
    You should now be able to chat to each other.
    If each of you has a camera it can be full Video , as described in the Glossary at the top.
    To start from the Mac end, select (highlight) your Buddy with one click. His camera icon should be dark. Click on the icon near his name or the one at the bottom of the Buddy List. (You do not have to start a text chat).
    To start from the PC end you need to start a text chat, then select the Video icon at the bottom of the chat window.
    If one of you has a camera and the other has a Mic then you will be able to video chat One Way but sound will be both ways.
    To start this type of chat from the Mac end you will have to go to the menu item "Buddies" and drop down to the item "Invite to One Way Video Chat"
    To start this from a PC follow the directions in the paragraph above. You may need to change the tab to the incoming Video at the back of the two to see the Video. These tabs are added when the Video chat starts and the front one normally states you do not have a camera and shows a connection to buy one.
    It is also possible to chat One Way if the other person does not have a Mic: replies will have to be typed in a Text chat.
    No Camera and No Mic will cause iChat to End the chat with "No Data Received for 10 Secs"
    Summary
    PC end gets AIM 5.9 or Trillian Pro.
    The PC end allows the app through the XP Firewall.
    AIM 5.9 needs "Tuning" to Camera and Mic.
    For any sort of sound to a PC using AIM, (Talk in PC or Audio in iChat) the Mac will need a camera. The other person can have a Mic and then live chats with sound both ways and Pictures (Video) One-Way.
    NOTE: At This Time It Is NOT Possible to Audio (sound only) between Mac & PC with AIM & iChat
    Trillian Basic can Audio. Trillian Pro can Video and has a bigger picture and can do Full Screen.
    Another explanation of the set up can be found Here about AIM 5.5 but is transferable to AIM 5.9.
    And Also here
    My Web Pages particularly all of Page 12: What if your Girlfriend Lives a Long Way Away ? have more information.
    <hr>
    AIM 6.5 and 6.8 On Vista and XP
    AIM 5.9 or earlier can not be installed on Vista.
    AIM 6.5 and 6.8 use a new video codec with a description of "Real Time IM"
    AIM have an FAQ page about this
    Below the pics is this quote
    What do I need to use Real-Time IM?
    You and your buddy need to be using AIM® 6.8 or higher to use Real-Time IM. Unfortunately, Real-Time IM does not yet work with older AIM clients, iChat®, or AIM® for Mac®.
    See items 5 through 13 on this page for alternatives including Web Browser based ones.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    This is the 2nd version of this tip. It was submitted on Saturday; April 4, 2009, 9:52 PM by Ralph Jonhs (UK).
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    This is the one I have been wating for
    http://discussions.apple.com/thread.jspa?threadID=406152
    kichat: Look and sound great in iChat!
    Ian's First FAQ
    Also New Today
    http://discussions.apple.com/thread.jspa?threadID=121775
    kichat: FAQ 2 - How to get my router to work with iChat?
    And
    http://discussions.apple.com/thread.jspa?threadID=121665
    kichat: FAQ 1 - What do I need to start in iChat ?
    11:20 PM Thursday; March 16, 2006

  • Getting Ripped DVD Video and Audio Into Encore

    Do you have previously authored DVDs that need rework?  Do you want to add menus with greater impact and functionality?  Do you want to add some additional program or supplemental material?  Does a client want their product demo DVD to be updated to reflect the capabilities of the new and improved version, but the source files no longer exist?  Using Adobe Encore DVD and a freeware utility called DVD Decrypter (DVDD), you can accomplish this quickly and easily.
    Disclaimer: I do not support the illegal copying and/or distribution of copyrighted works.  The authors and distributors of the software I use have made it clear that they do not support illegal copying.  This guide is intended solely to assist you in ripping and copying DVD video to which you have the legal rights.  Any use of this guide to infringe the copyright of someone else’s intellectual property is prohibited.
    This guide is based on Adobe Encore DVD 1.5.1 and DVD Decrypter version 3.5.4.0.  Let’s Begin!
    Place the DVD to be ripped in your DVD drive and launch DVDD.  If you have more than one drive (e.g., a DVD-ROM and a DVD burner) make sure the one with the disc is selected in the Source dropdown list in the main program window.  Now we need to set up DVDD to extract video in a way that is “Encore friendly”.  This is the toughest part of the whole exercise.  Click on the Tools menu item and choose “Settings…”. 
    Settings
    General Tab: You can leave these set at their defaults if you like.  Personally, I specify a custom Default Destination.  I put my ripped video assets all in one place anyway, and having a default destination means I have one less thing to do when I rip a DVD.
    IFO Mode Tab: Make sure that “Select Main Movie PGC” and “Enable Stream Processing” are checked.  “Uncheck Suspect Cells” is probably a good default safety check.  If your hard disks are formatted as NTFS, set File Splitting to “None”.  I leave “Copy IFO File” checked with the default sub-items checked.  Make sure that “Patch M2V Timecode” is unchecked.  The items in the Create Additional Files section are purely optional.  The author of DVDD has been kind enough to list which programs need which files; notice that Encore DVD isn’t listed as needing any of these extra files.  I do keep the “Stream Information” box checked.  DVDD generates very informative file names, but I like to keep “Include PGC Number” under File Names checked.  Be advised you will get some lengthy file names after DVDD is finished ripping.
    Stream Processing Tab: Since we enabled stream processing in the IFO Mode tab, we need to tell DVDD how to process those streams.  To save yourself time and confusion later, check the “Convert PCM to WAV” box.  Earlier versions of Encore required a Demuxed audio stream and a Raw video stream.  Encore 1.5.1 can accept either type of video stream (Raw or Demuxed) but it does still require a Demuxed audio stream.  However, I still recommend using Raw video and Demuxed audio, if only because it seems to be somewhat faster to process in DVDD.  This workflow is also backward-compatible with earlier versions of Encore.
    So let’s set up the Stream Processing tab now.  In the Demux box, enter “0x8? 0xA? 0xC?”.  This ensures that all audio streams in the selected PGC, whether AC3, PCM or MPEG will be set to Demux.  In the Raw box, enter “0xE0”.  This ensures that the video from the selected PGC will be set to Raw.  
    Additional Notes about the Stream Processing Tab:
    1. For those of you asking the question, “What the heck is a PGC?” it’s just DVD-speak for the titles in a DVD project.  And I’m not talking about the opening or end credits, either; I’m talking about the titles that result, for example, from the timelines you create in an Encore DVD project.  There is a subtle difference between a PGC and a VTS (title set), but that's not important right now.
    2. Happily, recent versions of DVDD create a WAV file after ripping that will import directly into Encore.  Versions prior to 3.2.0.0 would create a WAV file that had to be imported to, and exported from, a sound editing program like Adobe Audition, Goldwave or SoundForge before Encore would recognize it.
    Events Tab: For convenience sake, I recommend setting “Set Program Mode” in the Startup section to “IFO”.  That way, whenever you launch DVDD, it will look familiar to you.  You may safely ignore all of the other tabs in the Settings dialog. 
    Ripping
    1.Under the Input Tab of the main program window, select the PGC you want to rip.  You can only do one at a time.
    2.Switch to the Stream Processing Tab.  Verify that Enable Stream Processing is checked.
    3.Check or uncheck any or all of the video and audio streams that are listed.  Highlight each one to verify that all audio streams are set to Demux and the video stream is set to Raw.
    4.If you didn’t select Default Destination in the General Settings Tab, then you need to tell DVDD where to put the ripped files now.
    5.Click on the big DVD-to-Disk icon.
    6.DVDD will announce, quite loudly, when it has finished.  At that point you can rename the files or import them as is into Encore.
    I hope you find this guide useful and that it helps you get the most out of your investment in Adobe Encore DVD.
    Guide © Jeff Bellune 2005

    OK, I can't tell you what we are doing, you'll have to trust me that it's for a very good cause. I'll simplify the use case as an example. If I can do the following we'll be OK:
    1) Read video/audo files from a DVD that we created
    2) Open these files with the QuickTime Player, click on Export to Apple TV to create an output file.
    I'd rather not do an interim conversion of the video data (like use a 3rd party app to convert to mp4 first and then read into QT, but I'm considering a conversion to DV) because that could seriously hurt the apps effectiveness. I also can't use another app (MPEG Streamclip, HandBrake, VisualHub, etc.) to do the conversion.

  • Embedding video and audio for internet flipbook

    Dear All,
    first of all, sorry if it's been asked before but I could not find direct answer.
    My company, small translation agency in Poland, plans on to buy InDesign to improve quality of our output documents, but we have one more feature in mind and we don't know if InDesign CS6 supports this.
    In a movie http://tv.adobe.com/watch/cs55-design-standard-feature-tour/create-more-compelling-ebooks- with-indesign-cs55/ Terry White presents how to make an eBook with embedded video. We need a solution to create a similar effect, but the final document would be accessible from WWW (eg. http://essentialabsurdities.com/dance/ - there is no video in the example) - we want people to be able to browse content like in a book (flipbook?) and access video and audio (embedded or stored on a serwer along the document) when needed.
    Does InDesign support this? What should be the final format of such a document? Interactive PDF? SWF? Everybody says Flash is going to be retired soon (Apple does not support it, Android devices are soon to follow, the same for PCs in the nearest future probably) so we do not want to use this.
    Many thanks for your opinions on the issue.
    Best wishes,
    Michal Kornacki

    I have no incoming video for my Jabber account. I was doing some testing for one of my customers who had this issue. Here is what I found. I have a EX90 registered to VCS on a corporate network. I have my Jabber Express client I downloaded and installed. When I call to or from either I don't receive video on Jabber Express but I get audio from the EX90. I get Audio and video on the EX90 from Jabber. What I found when I was troubleshooting is that if you leave the call up for 30 seconds I finally start recieving video on Jabber from the EX90. After testing a few calls this happened every time. I then checked the call settings on both sides during the call. Both endpoints are experiencing 50% or so packet loss until the video started being sent to Jabber and then the packet loss dropped to 0. So I would assume there is something wrong on the Jabber Express end that is causing a 30 second or so delay when the video is being sent through the proxy. Has anyone else had this exact issue?

  • Fastest way to transfer video and audio from MacBook to TV?

    Hello All,
    Thanks for visiting my page. I would like to transfer video and audio from my Macbook mid-2010 (specs below), and would like to do so with minimum lag. I m aware Apple TV has a feature which allows me to do that, however considering it is connected via either wi-fi or bluetooth (not sure which) I feel streaming an HD movie or playing an MMO will cause significant lag and/or a distorted picture.
    So with that said, what is the best way to transfer video and audio with minimal lag?
    Also, as a part II of the question, will the picture be distorted regardless if my TV is 60 inches?
    Thanks for the feed back!
    Macbook Specs:
    Processor  2.4 GHz Intel Core 2 Duo
    Memory  8 GB 1067 MHz DDR3
    Graphics  NVIDIA GeForce 320M 256 MB
    Software  OS X 10.8.4 (12E55)

    The easiest and most reliable option is to connect your Mac to the TV wired. Just buy a Mini DisplayPort to HDMI adapter and a HDMI cable to connect your MacBook to your TV. See > http://support.apple.com/kb/HT4241 Image and sound will appear on the TV automatically.
    If the adapter and cable are OK, you won't get the picture distorted. Your Mac will try to use the maximum resolution the GPU allows in order to adapt the picture to your TV. It may not support the maximum resolution of the TV, but picture won't be distorted

  • Cutting and saving individual video and audio files from a clip

    I have to cut 201 individual video and audio files for separate scenes from an 11-minute animated episode and save them as separate MP4 video and MP3 audio files. What is the most efficient way to do this?

    Without knowing more about your project, it's hard to even guess at the most efficient workflow.
    Like: Do these clips have audio or are you adding it? What format are these clips? What is the intended delivery for the 11 minute movie?
    As a general matter, one creates an event, imports clips to it. Then organizes the clips according to the needs of job, using keyword collections and ratings. Then creates a project and starts a rough cut by marking ranges in the event browser and editing to the time line. Some people start with the music, making that the primary storyline mark where they want the edit to be and cut to that.
    Upon finishing, one can choose one or more of the "destination" presets. It's possible to export Audio only or Video only or both. MP3 is one of the audio choices. Some of the presets are MP4. If you want possibly better quality and more control, export the files as master files and encode in Compressor.
    Good luck.
    Russ

  • No picture etc. on TV.after connecting S video and audio cables fr.HP dv4305US and old Samsung

    No picture coming from TV.after installing S video and audio cables from HP 4305 US to 6yrs.old Samsung TV.Much appreciate info on how to correct this.Do I have to have cable TV or a digital TV.converter?

    Hi eb
    Welcome to Apple Discussions
    Could be a bad Dynex adapter, return that one for another and/or cough up the extra $3 for Apples.
    I'm now using a Mini-DVD to to DVI and a 21.5 LG monitor, but my Apple Mini-DVI to Video adapter and my 27" Sharp served me well for a couple of years.
    See the Tip in > http://support.apple.com/kb/TA23844?
    +Tip: To make sure that your iMac automatically detects the external display or projector, be sure you plug the adapter into the external display or projector before you plug it into the iMac.+
    Dennis

  • What do I need to transfer video and audio from my 2009 Macbook to my television?

    I want to watch a movie with my family tonight, but the DVD is broken. I was planning on renting the movie online and transferring the video and audio from my Macbook to the television. What cables will I need to accomplish this? Also, does anyone know, were I to use a Windows instead, would transferring the audio be simpler? (And what would I need to do that?)

    Try doing it without a cable!
    Use AirDrop, described here:
    http://support.apple.com/kb/HT4783
    UPDATE - Oh, sorry, I see the article points out the MacBook is too old for AirDrop.
    Message was edited by: sberman

  • How to disable the FULL SCREEN option in the 'Insert Video and Audio' option

    Hi,
    I've been inserting some MP3's and using an image for pupils to click on to play the sound, the images are 100 pixels by 100 pixels.
    The only issue is that I have the grey rectangle 'Full Screen' box over the picture. This is ideal when I put videos on but not necessary when you have just an MP3. Also I've noticed that the 'Styles' option is greyed out and due to that I can't change the
    colour of the play button.
    I've been inserting MP3's direct from my PC hard drive to the webpage.
    Any help'd be greatly appreciated.

    Hi,
    Per my understanding, you might want to disable the “Full Screen” button and make other customization when there is an audio file in the page.
    By default, when we insert an audio/video file into page via “Insert Video and Audio” button in the ribbon, an OOTB Media Web Part will be added into the page contains
    the file you added, the “Full Screen” button is a part of this Media Web Part.
    In consideration of you might have other requirements on designing the style, I would suggest you create a custom Media Web Part instead which will enable you customize
    the style as you want.
    About creating a custom Media Web Part, you can use the <audio> tag:
    http://www.w3schools.com/html/html5_audio.asp
    http://www.catswhocode.com/blog/mastering-the-html5-audio-property
    http://www.elated.com/articles/html5-audio/
    There are also other powerful JavaScript audio plugins:
    http://kolber.github.io/audiojs/
    http://jplayer.org/
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Video and audio players will not show in Firefox. Players show in Safari and Chrome. (Mac computers). Do I need a plug-in?

    Tested on 3 apple mac computers:
    Mac Pro, Mini Mac and Macbook Pro.
    Each computer running Mountain Lion and Firefox 11.8.800.94
    Video and audio players not showing on website (video player is JWPlayer)
    Error on video player placeholder says 'No video with supported format and MIME type found'
    When the same site is access via either Chrome or Safari then the video and audio players show with all of the controls.

    You get this error if the video tag is used and not an object or embed tag that specifies a Flash player.<br />
    So this doesn't look like a problem with the Flash player as it is most likely not used in this case.<br />
    If there is fall back code to use a Flash player then it isn't working.
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"

  • Import video and audio from a dvd into FCP

    Is there an easier way to import video and audio into Final Cut Pro - I am playing it on a DVD player and making a digital tape of it. Then logging and capturing it into FCP.

    Hello and welcome to the forum!
    Yes, there are a few ways that are faster. Have a look at this thread http://discussions.apple.com/click.jspa?searchID=-1&messageID=3465691
    You could use software, such as "streamclip", or import by plugging your camera into your capture device and hooking your capture device into your computer and capturing by non-controllable device settings.
    Good Luck

  • Video and audio manipulation

    I was reading the documentation for the media and all other related classes, and while there is functionality for video and audio playback, there doesn't seem to be any exposed lower level functionality in order to do things such as simple video and audio manipulation. I was wondering if there is any known way to achieve this? Also, is there any plan to incorporate something of this nature into JavaFx? Thanks in advance.

    Only things I can see in jira for this are:
    1. http://javafx-jira.kenai.com/browse/RT-19742 "Support simple video filters, like deinterlace, in MediaPlayer" (currently unscheduled)
    2. On http://javafx-jira.kenai.com/browse/RT-19582, Brian mentions "we already have separate issues on file for ... and 2) playing from a byte stream.", but I can't find a reference to the jira to play from a byte stream (I guess it's not public).
    If you can create a pretty specific and concise feature request, preferably backed with a use-case example, you can file it for consideration at http://javafx-jira.kenai.com

Maybe you are looking for