XGrid and ffmpeg

Has anyone tried setting up xgrid to run ffmpeg for encoding video?
I've got alot of video that I need to encode and speed could be greatly improved with xgrid.

I've started playing around with XGrid myself and tried to export some video using QuickTime tool.
You can download QT_TOOLS here:
http://www.omino.com/~poly/
and have more tech info about it here:
http://www.omino.com/~poly/software/qttools/man/qtexport.html
Still haven't found the perfect line command for that, but this tool is powerful and should give you what you are looking for with ffmpeg.
Hope it works out well for you.
PowerMac G5 dual 2.3GHZ   Mac OS X (10.4.6)   PowerBook G4

Similar Messages

  • [solved]Update of x264 and ffmpeg breaks MPD

    Updating to x264-20100107-1  and ffmpeg-20100108-2 had a bad effect on MPD today
    error while loading shared libraries: libx264.so.67 
    error while loading shared libraries libavutil.so.49
    Were the error I got after update when trying to start mpd. 
    Rather than do the ugly ls -s fix I'll wait for a rebuild/fix.
    Anyone else??
    Last edited by jwbirdsong (2010-01-10 23:26:56)

    I've not pulled in my msg from arch-dev-public in last 24 hrs or so... my bad. 
    I at least did ask in #archlinux and got no response before posting here. 
    wonder wrote:P.S mpd rebuilt has landed testing.
    good... I somehow knew if I posted this to begin w/  MPD would be rebuilt/uploaded soon  soon after I posted.
    Last edited by jwbirdsong (2010-01-10 23:28:33)

  • XGrid and DVD Studio Pro

    Greetings all,
    I've searched the net for an answer to this and couldn't find one, although I'm sure this question has been asked hundreds of times before. I just finished sorting through this forum as well and couldn't find a similar question. It doesn't seem like this forum is too active, but I'll give it a shot anyway.
    I use Final Cut Pro HD (4.5) and DVD Studio Pro 3 rather heavily. We have four systems and may have a new addition soon. I'd really love to be able to speed up render times in DSP at the very least.
    So far I've set up the grid. I used XgridLite to make one of the computers the controller. Through Apple Preferences I enabled Xgrid on the agent systems (including the controller) and pointed them to the controller system. The grid is password-protected, and all agents are set to receive tasks regardless of whether they are idle or not. With the exception of one system (the slowest one), all systems successfully joined the grid and are in "Available" status when viewed with Xgrid Admin.
    I presume the grid is properly set up so far. When I try to encode with DVD Studio Pro, however, the admninistrator utility doesn't show any of the systems becoming active. Note that the primary encoding system was the same as the controller system - was that the problem, perhaps?
    All systems are currently linked through a 100 mbps network. We'll soon be moving them to a 1 gbps network. I was hoping that the 100 mbps network would at least let me see that it worked, even slightly. I looked through DSP's preferences but I can't find any options about network encoding or tying into Xgrid. I presume that acting as a client to the Xgrid network is a function built into Xgrid-enabled programs (or scripts you'd write yourself).
    Any advice? If anyone can say for certain that DSP 3 won't do it but that newer versions of DSP will, I can request an upgrade and probably get it. I'd rather not do that unless this will for sure work with Xgrid, and only if Xgrid will provide a reasonable performance boost.
    Thanks in advance!
    David

    This post has received a number of views but no comments back, so I thought I'd give a brief update on my findings. Even though I've seen Xgrid as being marketed as something that could be used for media, it is the wrong tool for the job when it comes to Final Cut Pro, DVD Studio Pro, and likely other media applications. What should be used instead is a program called Qmaster. If you have DVD Studio Pro 4, Qmaster is included in the "Extras" content on the disc. Qmaster allows for distributed work to occur through Compressor, which Final Cut Pro and DVD Studio Pro rely on.
    I have requested that my department upgrade to DVD Studio Pro 4, and may update with how successful it is. Otherwise, if you were like me and were looking around the internet for how to get this stuff working with Xgrid, stop and begin looking into Qmaster.

  • Reading InputStream from Runtime.exec() and ffmpeg?

    I've got a lot of things going on here and I'm having trouble debugging. I'm working on a streaming music player, and the platform only handles MP3 natively. Specifically, the method that handles incoming requests has to return an InputStream for further processing upstream (out of my visibility).
    I'm trying to extend the music player to play AAC files with the extension ".m4a". To do this, my plan is to transcode from MP3 to AAC using Runtime.exec() and ffmpeg, and then return an InputStream that contains the MP3. This works fine if I use ffmpeg to transcode to a temp file, and then return a FileInputStream constructed from that temp file. But like I said, this is supposed to be a steaming music player, and the blocking for the ~30 seconds it takes to completely transcode to a file is too much of a delay.
    So what I'm trying to do is have ffmpeg transcode to stdout, and then use Process.getInputStream() to return the InputStream that contains ffmpeg's stdout while the transcoding is still going on. This doesn't work and I'm not sure why. (I'm fairly new to java, and this is the first time I've used Runtime.) My player just hangs there. I know Runtime is picky about exhausting the stdout and stderr streams, so I'm not sure if it's something related to that, or if I somehow need to buffer the stdout before returning it, or if I need to run something in a different thread, or if I'm just completely barking up the wrong tree.
    If anyone has any experience with something like this, or can point me at some code that implements something similar, I'd appreciate the help.
    Below a sample of the code in question. Also, for what it's worth, all of the console messages that I put in there are printing, but the music doesn't play.
       public InputStream getStream(String uri) throws IOException
                 System.out.println("Entering Factory.getStream()");
                  System.out.flush();
                File file = new File(URLDecoder.decode(uri, "UTF-8"));
                if (file.exists())
                     if(file.getPath().toLowerCase().endsWith(".mp3")) {
                            // This code for playing MP3 files works correctly
                          System.out.println("Playing MP3");
                          System.out.flush();
                          InputStream in = new FileInputStream(file);
                          return in;
                     else if(file.getPath().toLowerCase().endsWith(".m4a")){
                          System.out.println("Playing M4A");
                          System.out.flush();
                          // Create array for ffmpeg command line
                            // This command line transcodes to STDOUT
                          String[] command = { this.ffmpeg_path,
                                                             "-i", 
                                                             "input.m4a",
                                                             "-acodec",
                                                             "libmp3lame",
                                                             "-ac",
                                                             "2",
                                                             "-ab",
                                                             "256",
                                                             "-f",
                                                             "mp3",
                          // Begin transcoding with ffmpeg
                          System.out.println("Transcoding...");
                          System.out.flush();
                          Runtime runtime = Runtime.getRuntime();
                          Process ffmpeg = runtime.exec(command);
                          // Must exhaust error stream, or the application can become deadlocked.
                          System.out.println("Exhausting stderr...");
                          System.out.flush();
                          this.exhaustInputStream(ffmpeg.getErrorStream());
                          // Return ffmpeg's stdout as an input stream
                          System.out.println("Returning stdout...");
                          System.out.flush();
                          return ffmpeg.getInputStream();
                     else {
                          System.out.println("Unsupported Audio File");
                          System.out.flush();
                          return null;
                else
                    // We aren't requesting a file, so let the API handle the request upstream...
                    return super.getStream(uri);
         private void exhaustInputStream(final InputStream inputStream) {
                  // Since InputStream.read() blocks, exhast the stream in a separate thread
                  new Thread() {
                       public void run() {
                            try {
                                 while(inputStream.read() >= 0) {
                                      // Just throw the bytes away
                            catch(IOException e) {
                                 e.printStackTrace();
                  }.start();
             }

    Read this article
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Help needed with JMF and FFMPEG

    Hi, im using Jave which is a wrapper libraray for FFMPEG to encoded videos and im also using JMF to take snapshots of the video to save as thumbnails. All the code I have works except that I cant get Jave(FFMPEG) to encoded the videos in to a format that JMF can handle. Does any body know a format or codec that Jave(FFMPEG) can use to get JMF to handle the videos.
    Cheers, any help will be much apprecitated.

    One solution to most of your questions : Read the advanced table section of Dev guide.
    Always go through the dev guide before putting up the issue. Let the forum be for those scenarios which dev guide doesn't covers in much detail.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • XGrid and Final Cut Pro

    hey peeps,
    I was wondering if Final Cut Pro would benifit from xgrid. We have 4 Mac Pros for the video guys and they would find it useful if they could share resources, especially if one individual is not using there machine to its full potential.
    If users did a traditional render would it utilise a clusters resources rather than just one machines or would i have to run the render via command line?
    Also, would Adobe Creative Suite users benifit from setting up xgrid?
    Cheer in advance

    Final Cut Pro does not use Xgrid unless something's changed very recently. FCS comes with a different distributed processing technology, Qmaster, which allows Compressor processing to be distributed to multiple systems. You can find documentation here (that may not be the latest, but it will give you the idea, at least).
    Adobe Creative Suite has no distributed processing capability, to the best of my knowledge.
    Regards.

  • Xgrid and Apple apps

    Just wondering what Programs work with QMaster and the Xgrid setup.
    FinalCutPro?
    Motion?
      Mac OS X (10.4.4)  

    After searching online this fixed my issue
    vin_OZOct 30, 2014 2:02 AM Re: After installing Yosemite, safari doesn't work any more.
    Re: After installing Yosemite, safari doesn't work any more.in response to Koenfromdudzele
    I have found a temporary solution that works until reboot.
    Open a Terminal window and type:
    sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.discoveryd.plist
    -type password-
    then:
    sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.discoveryd.plist
    Dont know how to link him. But this worked fine. Guess it was missing this plist
    Cheers

  • Vlc 2.0.5 and ffmpeg 1.1.3 segfaults if using AAC (MP4A)

    vlc segfaults when using aac (mp4a) audio codec on transcode
    ./asus0.sh: line 10: 20063 Segmentation fault (core dumped) vlc -Idummy -v 'v4l2:///dev/video0:input=1:standard=2:chroma=I420:width=720:height=576' ':input-slave=alsa://' --v4l2-aspect-ratio=16:9 --sout '#transcode{vcodec=h264{keyint=30},vb=512,fps=25,acodec=mp4a,ab=128,channels=2,fps=25,vt=1024000,deinterlace,canvas-aspect=16:9,aspect=16:9,samplerate=44100,hurry-up,high-priority}:duplicate{dst=std{access=http{mime=video/x-flv},mux=ffmpeg{mux=flv},dst=:8080},dst=std{access=livehttp{seglen=10,delsegs=true,numsegs=5,index="/home/vlc/streaming/asus0.m3u8",index-url="http://leelo.folk.ee/streaming/asus0-########.ts"},mux=ts{use-key-frames},dst="/home/vlc/streaming/asus0-########.ts"},dst=std{access=http{mime=video/x-mpeg},mux=ts,dst=:8090},dst=rtp{sdp=rtsp://:8880/asus0.sdp},dst=std{access=file,mux=ts,dst="/home/vlc/save/FILE"}}' --ttl 12 --sout-ffmpeg-strict=-2 --rtsp-host=193.40.120.236
    dmesg last line
    [61652.892234] vlc[20074]: segfault at 7f3bcd96d9a0 ip 00007f3c4d3ca100 sp 00007f3c34f01c38 error 4 in libavcodec.so.54.86.100[7f3c4d33a000+7b8000]
    no problems when using mpga (mp3) audio. And problem starts after ffmpeg 1.0.1 -> 1.1.3

    asus0 is symlink to vlc
    asus0 -Idummy \
    'v4l2:///dev/video0:input=1:standard=2:chroma=I420:width=720:height=576' ':input-slave=alsa://' \
    --v4l2-aspect-ratio=16:9 \
    --sout \
    '#transcode{vcodec=h264{keyint=30},vb=512,fps=25,acodec=mp4a,ab=128,channels=2,fps=25,vt=1024000,deinterlace,canvas-aspect=16:9,aspect=16:9,samplerate=44100,hurry-up,high-priority}:duplicate{dst=std{access=http{mime=video/x-flv},mux=ffmpeg{mux=flv},dst=:8080},dst=std{access=livehttp{seglen=10,delsegs=true,numsegs=5,index="/home/vlc/streaming/asus0.m3u8",index-url="http://leelo.folk.ee/streaming/asus0-########.ts"},mux=ts{use-key-frames},dst="/home/vlc/streaming/asus0-########.ts"},dst=std{access=http{mime=video/x-mpeg},mux=ts,dst=:8090},dst=rtp{sdp=rtsp://:8880/asus0.sdp},dst=std{access=file,mux=ts,dst="/home/vlc/save/FILE"}}' \
    --ttl 12 --sout-ffmpeg-strict=-2 --rtsp-host=193.40.120.236
    and big -vvv output from vlc is available http://www2.folk.ee/~jaanus/log.txt
    valgrind output http://www2.folk.ee/~jaanus/valgrind.txt
    strace -ff output http://www2.folk.ee/~jaanus/strace.txt
    vlc, x264 & ffmpeg downgrade helps, but this information may be useful.
    This issue is repeatable on different machines. No problem with mp3 audio, crash only occures when using AAC audio codec.
    Last edited by bannbann (2013-03-01 10:17:35)

  • XGrid and Super Pi

    Can I use xGrid to impove my time in Super Pi? Also, is there any decent beanchmark tool for OS X that works with a cluster in xGrid?

    I don't know if super_pi is the ideal software to benchmark a MacBook Pro, as there is no Universal Binary version nor sources today (or if you have found something, give us the link !)
    If you want to try with the Windows version under bootcamp, or using Roseta here is the homepage :
    http://www.super-computing.org/
    Also, to calculate 2M digits of Pi, you'll have to use 21 as the parameter.
    ./super_pi 21
    Message was edited by: Yohann Colombat

  • Xgrid and Leopard Server

    Is Leopard Server required on the Xgrid controller or can the controller be running Leopard client?

    The controller can be using the client version of Leopard; click here for more information.
    (41636)

  • FCP and xgrid system?

    I am new to FCP and xgrid and I am planning on getting FCP later in the spring. My question is, for someone who has expereince with xgrid, how well does FCP utilize an xgrid system? Also could an xgrid system be possible over a wireless G network or is this way to slow? I have a powerbook as my main computer and I could utilize a mac mini, iMac G5, and some windows computers (if possible) all as clients on the xgrid system... IS this possible?
    Also if you just have an xgrid system please elaborate about its infrastructure/setup, how well it works, opinions, etc...
    Thank you in advance,
    TM

    FCP at the present time makes no use of the xgrid renderfarm capability...
    Patrick

  • FFmpeg crash when recording desktop

    I'm using x264-git and ffmpeg-svn from AUR.  I am attempting to record usage of xcalc as an example of using FFmpeg to capture a specific application on the desktop.   However, FFmpeg will always crash at certain resolutions, but it will encode if I change the resolution from -s 228x332 to -s 232x332.  I asked at #ffmpeg and nobody was able to replicate this.  My system is i686.
    Can anyone confirm this behavior?
    FFmpeg command that crashes:
    ffmpeg -r 30 -s 228x332 -f x11grab -i :0.0+0,0 -g 300 -threads 0 -vcodec libx264 -vpre fastfirstpass -vpre baseline -sc_threshold -1 -cqp 22 -flags -loop -y x11grab.mp4
    FFmpeg output:
    FFmpeg version SVN-r20483, Copyright (c) 2000-2009 Fabrice Bellard, et al.
    built on Nov 8 2009 19:21:37 with gcc 4.4.2
    configuration: --prefix=/usr --enable-gpl --enable-nonfree --enable-libmp3lame --enable-libfaac --enable-libfaad --enable-libx264 --enable-libtheora --enable-postproc --enable-shared --enable-pthreads --enable-x11grab --arch=i686
    libavutil 50. 3. 0 / 50. 3. 0
    libavcodec 52.37. 1 / 52.37. 1
    libavformat 52.39. 2 / 52.39. 2
    libavdevice 52. 2. 0 / 52. 2. 0
    libswscale 0. 7. 1 / 0. 7. 1
    libpostproc 51. 2. 0 / 51. 2. 0
    [x11grab @ 0x979a420]device: :0.0+0,0 -> display: :0.0 x: 0 y: 0 width: 228 height: 332
    [x11grab @ 0x979a420]shared memory extension found
    Input #0, x11grab, from ':0.0+0,0':
    Duration: N/A, start: 1257755377.215680, bitrate: 72668 kb/s
    Stream #0.0: Video: rawvideo, bgra, 228x332, 72668 kb/s, 30 tbr, 1000k tbn, 30 tbc
    [libx264 @ 0x97a7010]using cpu capabilities: MMX2 SSE2 Cache64
    [libx264 @ 0x97a7010]profile Baseline, level 1.3
    Output #0, mp4, to 'x11grab.mp4':
    Stream #0.0: Video: libx264, yuv420p, 228x332, q=10-51, 200 kb/s, 30 tbn, 30 tbc
    Stream mapping:
    Stream #0.0 -> #0.0
    Press [q] to stop encoding
    *** glibc detected *** ffmpeg: double free or corruption (out): 0x098d1948 ***
    ======= Backtrace: =========
    /lib/libc.so.6[0xb6c7f5e1]
    /lib/libc.so.6[0xb6c80ce2]
    /lib/libc.so.6[0xb6c82e18]
    /lib/libc.so.6(__libc_memalign+0xa6)[0xb6c84386]
    /lib/libc.so.6(posix_memalign+0x5c)[0xb6c845cc]
    /usr/lib/libavutil.so.50(av_malloc+0x31)[0xb6dda001]
    [0x17]
    ======= Memory map: ========
    08048000-0805c000 r-xp 00000000 08:02 2277719 /usr/bin/ffmpeg
    0805c000-0805d000 rwxp 00013000 08:02 2277719 /usr/bin/ffmpeg
    0805d000-08061000 rwxp 00000000 00:00 0
    09791000-09a8d000 rwxp 00000000 00:00 0 [heap]
    b3d00000-b3d21000 rwxp 00000000 00:00 0
    b3d21000-b3e00000 ---p 00000000 00:00 0
    b3e1d000-b3f2c000 rwxp 00000000 00:00 0
    b3f2c000-b3f2d000 ---p 00000000 00:00 0
    b3f2d000-b472d000 rwxp 00000000 00:00 0
    b472d000-b472e000 ---p 00000000 00:00 0
    b472e000-b4f2e000 rwxp 00000000 00:00 0
    b4f2e000-b4f2f000 ---p 00000000 00:00 0
    b4f2f000-b5779000 rwxp 00000000 00:00 0
    b5779000-b577a000 ---p 00000000 00:00 0
    b577a000-b65b1000 rwxp 00000000 00:00 0
    b65fb000-b6645000 rwxs 00000000 00:08 347766791 /SYSV00000000 (deleted)
    b6645000-b6647000 rwxp 00000000 00:00 0
    b6647000-b6664000 r-xp 00000000 08:02 2270770 /usr/lib/libgcc_s.so.1
    b6664000-b6665000 rwxp 0001c000 08:02 2270770 /usr/lib/libgcc_s.so.1
    b6665000-b674d000 r-xp 00000000 08:02 2270924 /usr/lib/libstdc++.so.6.0.13
    b674d000-b674e000 ---p 000e8000 08:02 2270924 /usr/lib/libstdc++.so.6.0.13
    b674e000-b6752000 r-xp 000e8000 08:02 2270924 /usr/lib/libstdc++.so.6.0.13
    b6752000-b6753000 rwxp 000ec000 08:02 2270924 /usr/lib/libstdc++.so.6.0.13
    b6753000-b675a000 rwxp 00000000 00:00 0
    b675a000-b675e000 r-xp 00000000 08:02 2271025 /usr/lib/libXdmcp.so.6.0.0
    b675e000-b675f000 rwxp 00003000 08:02 2271025 /usr/lib/libXdmcp.so.6.0.0
    b675f000-b6760000 rwxp 00000000 00:00 0
    b6760000-b6762000 r-xp 00000000 08:02 2269782 /usr/lib/libXau.so.6.0.0
    b6762000-b6763000 rwxp 00001000 08:02 2269782 /usr/lib/libXau.so.6.0.0
    b6763000-b6812000 r-xp 00000000 08:02 2271955 /usr/lib/libmp4v2.so.0.0.0
    b6812000-b6815000 rwxp 000af000 08:02 2271955 /usr/lib/libmp4v2.so.0.0.0
    b6815000-b682d000 r-xp 00000000 08:02 2269819 /usr/lib/libxcb.so.1.1.0
    b682d000-b682e000 rwxp 00017000 08:02 2269819 /usr/lib/libxcb.so.1.1.0
    b682e000-b6835000 r-xp 00000000 08:02 3033532 /lib/librt-2.10.1.so
    b6835000-b6836000 r-xp 00006000 08:02 3033532 /lib/librt-2.10.1.so
    b6836000-b6837000 rwxp 00007000 08:02 3033532 /lib/librt-2.10.1.so
    b6837000-b6839000 r-xp 00000000 08:02 3033551 /lib/libdl-2.10.1.so
    b6839000-b683a000 r-xp 00001000 08:02 3033551 /lib/libdl-2.10.1.so
    b683a000-b683b000 rwxp 00002000 08:02 3033551 /lib/libdl-2.10.1.so
    b683b000-b683c000 rwxp 00000000 00:00 0
    b683c000-b68c4000 r-xp 00000000 08:02 2270010 /usr/lib/libx264.so.78
    b68c4000-b68c5000 rwxp 00088000 08:02 2270010 /usr/lib/libx264.so.78
    b68c5000-b68cc000 rwxp 00000000 00:00 0
    b68cc000-b68d1000 r-xp 00000000 08:02 2271099 /usr/lib/libogg.so.0.6.0
    b68d1000-b68d2000 rwxp 00004000 08:02 2271099 /usr/lib/libogg.so.0.6.0
    b68d2000-b6921000 r-xp 00000000 08:02 2270574 /usr/lib/libtheora.so.0.3.10
    b6921000-b6922000 rwxp 0004f000 08:02 2270574 /usr/lib/libtheora.so.0.3.10
    b6922000-b6961000 r-xp 00000000 08:02 2269431 /usr/lib/libmp3lame.so.0.0.0
    b6961000-b6963000 rwxp 0003f000 08:02 2269431 /usr/lib/libmp3lame.so.0.0.0
    b6963000-b6994000 rwxp 00000000 00:00 0
    b6994000-b69d0000 r-xp 00000000 08:02 2269276 /usr/lib/libfaad.so.2.0.0
    b69d0000-b69d3000 rwxp 0003b000 08:02 2269276 /usr/lib/libfaad.so.2.0.0
    b69d3000-b69d4000 rwxp 00000000 00:00 0
    b69d4000-b69e2000 r-xp 00000000 08:02 2270946 /usr/lib/libfaac.so.0.0.0
    b69e2000-b69e5000 rwxp 0000d000 08:02 2270946 /usr/lib/libfaac.so.0.0.0
    b69e5000-b69f4000 r-xp 00000000 08:02 3031112 /lib/libbz2.so.1.0.4
    b69f4000-b69f5000 rwxp 0000f000 08:02 3031112 /lib/libbz2.so.1.0.4
    b69f5000-b6a08000 r-xp 00000000 08:02 2270761 /usr/lib/libz.so.1.2.3.3
    b6a08000-b6a09000 rwxp 00012000 08:02 2270761 /usr/lib/libz.so.1.2.3.3
    b6a09000-b6a16000 r-xp 00000000 08:02 2270216 /usr/lib/libXext.so.6.4.0
    b6a16000-b6a17000 rwxp 0000d000 08:02 2270216 /usr/lib/libXext.so.6.4.0
    b6a17000-b6b2d000 r-xp 00000000 08:02 2269865 /usr/lib/libX11.so.6.3.0
    b6b2d000-b6b31000 rwxp 00115000 08:02 2269865 /usr/lib/libX11.so.6.3.0
    b6b31000-b6b32000 rwxp 00000000 00:00 0
    b6b32000-b6b43000 r-xp 00000000 08:02 2271083 /usr/lib/libjack.so.0.0.28
    b6b43000-b6b45000 rwxp 00010000 08:02 2271083 /usr/lib/libjack.so.0.0.28
    b6b45000-b6b4d000 rwxp 00000000 00:00 0
    b6b4d000-b6c10000 r-xp 00000000 08:02 2269598 /usr/lib/libasound.so.2.0.0
    b6c10000-b6c14000 rwxp 000c3000 08:02 2269598 /usr/lib/libasound.so.2.0.0
    b6c14000-b6d54000 r-xp 00000000 08:02 3033543 /lib/libc-2.10.1.so
    b6d54000-b6d56000 r-xp 00140000 08:02 3033543 /lib/libc-2.10.1.so
    b6d56000-b6d57000 rwxp 00142000 08:02 3033543 /lib/libc-2.10.1.so
    b6d57000-b6d5a000 rwxp 00000000 00:00 0
    b6d5a000-b6d6e000 r-xp 00000000 08:02 3033456 /lib/libpthread-2.10.1.so
    b6d6e000-b6d6f000 ---p 00014000 08:02 3033456 /lib/libpthread-2.10.1.so
    b6d6f000-b6d70000 r-xp 00014000 08:02 3033456 /lib/libpthread-2.10.1.so
    b6d70000-b6d71000 rwxp 00015000 08:02 3033456 /lib/libpthread-2.10.1.so
    b6d71000-b6d73000 rwxp 00000000 00:00 0
    b6d73000-b6d97000 r-xp 00000000 08:02 3033433 /lib/libm-2.10.1.so
    b6d97000-b6d98000 r-xp 00023000 08:02 3033433 /lib/libm-2.10.1.so
    b6d98000-b6d99000 rwxp 00024000 08:02 3033433 /lib/libm-2.10.1.so
    b6d99000-b6dd1000 r-xp 00000000 08:02 2271538 /usr/lib/libswscale.so.0.7.1
    b6dd1000-b6dd2000 rwxp 00037000 08:02 2271538 /usr/lib/libswscale.so.0.7.1
    b6dd2000-b6dd3000 rwxp 00000000 00:00 0
    b6dd3000-b6de0000 r-xp 00000000 08:02 2271516 /usr/lib/libavutil.so.50.3.0
    b6de0000-b6de1000 rwxp 0000d000 08:02 2271516 /usr/lib/libavutil.so.50.3.0
    b6de1000-b6de4000 rwxp 00000000 00:00 0
    b6de4000-b7376000 r-xp 00000000 08:02 196709 /usr/lib/libavcodec.so.52.37.1
    b7376000-b7380000 rwxp 00592000 08:02 196709 /usr/lib/libavcodec.so.52.37.1
    b7380000-b77c5000 rwxp 00000000 00:00 0
    b77c5000-b7887000 r-xp 00000000 08:02 2270068 /usr/lib/libavformat.so.52.39.2
    b7887000-b788d000 rwxp 000c1000 08:02 2270068 /usr/lib/libavformat.so.52.39.2
    b788d000-b7897000 r-xp 00000000 08:02 2270032 /usr/lib/libavdevice.so.52.2.0
    b7897000-b7898000 rwxp 00009000 08:02 2270032 /usr/lib/libavdevice.so.52.2.0
    b7898000-b78a4000 r-xp 00000000 08:02 196708 /usr/lib/libpostproc.so.51.2.0
    b78a4000-b78a5000 rwxp 0000b000 08:02 196708 /usr/lib/libpostproc.so.51.2.0
    b78a5000-b78a6000 rwxp 00000000 00:00 0 Aborted
    Last edited by DrZaius (2009-11-09 08:38:25)

    I just started using GB for the very first time last night and began experiencing the same symptoms several hours into the session and it has not stopped despite a reboot. It hangs about 75% of the time after I record a track or when I try to save. Interestingly, I can still play the keyboard and hear sounds despite the spinning beach ball preventing me from doing anything through the GB GUI. I also need to use a Force Quit. I'm using a Keystation 49 (not the 49e).
    I'm a recent first-time Mac owner (I've only had it for about two weeks now) and am disappointed with the problems that I've had so far. I still like it more than Windows, but it's sure not because it's more stable.

  • Podcast Producer and Internet Explorer

    I've configured Podcast Producer on 10.6.8, and it is working fine - items are processed from the Capture software through to PcP2 and Xgrid, and are then uploaded to a Wiki.
    The issue is with clients using Internet Explorer (any version) and their ability to play audio files uploaded from Capture or through the web interface of the wiki. Videos work fine, but whatever code is used to upload just audio files to the wiki cannot be interpreted by IE. I know that 10.6.8 was meant to address some of these issues, but I am just not sure how to proceed.
    Has anyone had a similar experience?
    Cheers
    Kieran

    Not sure if this will fix your problem, but I was having the same problem until I looked at the specs for XGrid, it has to run on an Intel Mac. This is where you can get the specs:
    http://docs.info.apple.com/article.html?artnum=306737
    Here is what is in the doc:
    Podcast Capture requirements
    Any Mac running Mac OS X 10.5 Leopard
    iSight camera (built-in or external) or FireWire DV camcorder
    Podcast Producer Server requirements
    Any Mac running Mac OS X Server version 10.5 Leopard
    Xsan for optional cluster file services
    Podcast Producer Xgrid rendering requirements
    Any Intel-based Macintosh Server or Intel-based desktop Mac (a Mac Pro, for example)
    Mac OS X 10.5 Leopard or Mac OS X Server version 10.5 Leopard
    At least 1 GB of memory (RAM) plus 512 MB of additional RAM per processor core
    At least 50 GB of available disk space
    Xsan for optional cluster file services
    Quartz Extreme-enabled video chipset
    Note: Quartz Extreme support can be verified in the Graphics section of Apple System Profiler.
    Note: If a system is providing multiple Podcast services (for example, Podcast Producer and Podcast Producer Xgrid rendering), the system needs to meet both requirements.

  • Mix 10.5.8 Server and new 10.6 - Advice?

    We currently are using a Leopard 10.5.8 Xserve with Dansguardian and Squid proxy to provide web access and limited wiki and calendar use for about 200 users (not all online at once). I would like to investigate serving podcasts daily to the users using the necessary services in Mac OS X Server. There is also a possibility of streaming broadcasts once a week. Workgroups have been setup and Podcast Producer works fine.
    My question has to do with the load on the Xserve. While testing there does not seem a significant impact on the web access and server. However, going forward, am I better off to deploy the Podcast Producer, Xgrid, and QTSS on another server; perhaps a new 10.6 mini? If so, has anyone had experience integrating a 10.6 server with a 10.5? Are there any issues to be concerned about?

    We currently are using a Leopard 10.5.8 Xserve with Dansguardian and Squid proxy to provide web access and limited wiki and calendar use for about 200 users (not all online at once). I would like to investigate serving podcasts daily to the users using the necessary services in Mac OS X Server. There is also a possibility of streaming broadcasts once a week. Workgroups have been setup and Podcast Producer works fine.
    My question has to do with the load on the Xserve. While testing there does not seem a significant impact on the web access and server. However, going forward, am I better off to deploy the Podcast Producer, Xgrid, and QTSS on another server; perhaps a new 10.6 mini? If so, has anyone had experience integrating a 10.6 server with a 10.5? Are there any issues to be concerned about?

  • Compressor H.264 and Android devices

    I'm looking to make videos on our web site as mobile compatible as is practical and have run into a specific issue with compressor. When I tried to play one of our H.264 videos on an Android device I got the picture but no sound. I did some experimenting and found that any video made with the Format of Quicktime (regardless of codec) had the same problem. I have been able to make H.264 videos with other tools such as Handbrake and ffmpeg with similar settings as used in Compressor and those work fine on the Android. Anyone have an idea what my problem is and if there is a work-around? So far my only option seems to be using ffmpeg instead of compressor.

    I've had luck with H.264/AAC from Quicktime Player 7 and Adobe Media Encoder. I've never been able to export to Android out of Compressor. The AAC flavours Compressor offers aren't to Android's taste.
    Here's the spec sheet on what is/isn't accepted.
    http://developer.android.com/guide/appendix/media-formats.html
    Also, for the record, Google supports and actively contributes to HTML5. The hang up is the video tag in HTML 5 does not specify a codec. Google is dropping support for H.264 video in Chrome when using the video tag because H.264 is proprietary, not open. This is the same reason H.264 video support has never been in Firefox. H.264 will be supported in Chrome through Flash, just as WebM will be supported almost everywhere else via Flash.
    Message was edited by: soundman1024 - Changed from "AAC" to "H.264/AAC" in 1st sentence

Maybe you are looking for

  • Can we use replace function in bursting control file?

    Hi All, Greetings!!!!!!!!!! Have a doubt can we use sql functions like replace,nvl,decode.. in xml bursting control file. Please let me know if there is a option. awaiting reply... Thanks Rajesh

  • How do I change the email address for a gamecenter account

    My child has been using a gamecenter account linked to my main apple id. I am trying to set up family sharing and have created a new (under age 13) account for him, [email protected] I would like to give him the previous gamecenter account and create

  • How to find the maximum of group sums within a specific column using report builder 3.0

    Hi For each part number I am trying to find out in which week of a month did the largest daily shipment occur... so using report builder 3.0 in SSRS 2012 I can find daily, weekly and monthly totals for the units shipped but I am having a hard time th

  • 5th gen iPod will not unmount

    I have a 5th gen iPod which I use to backup other data files. The iPod setting within iTunes allow for desktop mounting of the iPod. When I attempt to unmount the iPod from the desktop (with iTunes closed) and only the finder (and dashboard) running,

  • RFC Adapter Receiver - change SAP User for each call

    Hi guys, I need to create one connection between PI and SAP, all right, i can use RFC Adapter Receiver, no problem. But, for each call i need to use User and Password different, then, I would pass SAP User and Password in my XML Payload. Can anybody