I have links to recorded conferences, how can I export video from them?
相关问题
- Should I wait for Flash Player 10.1 or go with Fla
- How to stream the videos stored on google cloud st
- How to force to show PDF in google chrome using Ad
- Media record API alternative for Safari
- Post processing in ffmpeg to move 'moov atom
相关文章
- Why MPMoviePlayerController fullscreen button icon
- How To Programmatically Enable/Disable 'Displa
- How to load images and fragments dynamically in Li
- Rapidly learn InDesign scripting?
- How to know which android devices support video pl
- Live streaming with silverlight 4
- Video feed to ThingsBoard dashboard
- Twilio Voice. Add another participant to existing
In Connect Central, in the recording listings, there is a Make Offline link. This will create an FLV of the recording on your local machine. Unfortunately, creating this video this takes as long as the recording takes to play. Follow the guidance given by the app for best quality.
You can then transcode the FLV to the format you prefer.
You must be a host of the meeting recorded or have moved the recording into the content library.
output/filename.zip?download=zip
I wrote this Python script to export an Adobe Connect recording as a video:
Explanation on how the script works:
Assume that the Adobe Connect ID is p6vwxp2d0c2f, i.e. the URL is https://my.adobeconnect.com/p6vwxp2d0c2f. You can add
/output/p6vwxp2d0c2f.zip?download=zip
at the end of the URL to download some zip archive containing a bunch of audio and video files as well as some .xml files. E.g., https://my.adobeconnect.com/p6vwxp2d0c2e/output/p6vwxp2d0c2e.zip?download=zip could contain:To merge them, you can use
ffmpeg
(I took theffmpeg
commands from Oliver Wang / Yannick Hold-Geoffroy / Aaron Hertzmann):where:
-map 0:a:0
: map the first input file to be used just for the audio.-map 1:v:0
: map the second input file to be used just for the video.-shortest
: cut the audio or video in case cameraVoip_1_11.flv and screenshare_2_10.flv don't have the same length.If you want to keep the webcam video and place it in some corner of the video screen sharing:
Regarding mapping the cameraVoip__.xml to the correct screenshare__.xml, in case there is more than one:
One could look at the cameraVoip__.xml / screenshare__.xml to get the timestamps of when the audio / screen share video began. This allows to map the screenshare__.xml with the correct cameraVoip__.xml.
E.g., in https://my.adobeconnect.com/p6vwxp2d0c2f/output/p6vwxp2d0c2f.zip?download=zip, from cameraVoip_1_11.xml, line 21:
Otherwise, another way could be to sort cameraVoip__.xml / screenshare__.xml, then map the first cameraVoip__.xml with the first screenshare__.xml, the second cameraVoip__.xml with the first screenshare__.xml, etc. I don't know if it'd break in some cases (seems to be ok for the couple of Adobe Connect recordings I looked at but perhaps that's because people always share screens).