Testing done using a Canon EOS 600D and a Canon EF-S18-55mm f/3.5-5.6 IS II.
- VBAT
- DET (common with P-GND on lens side)
- P-GND
- VDD
- DCL
- DLC
#!/bin/bash | |
# Copyright (c) 2013 The Bitcoin Core developers | |
# Distributed under the MIT software license, see the accompanying | |
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
#network interface on which to limit traffic | |
IF="wlan0" | |
#limit of the network interface in question | |
LINKCEIL="5mbit" | |
#limit outbound Bitcoin protocol traffic to this rate |
#!/usr/bin/env python | |
# | |
# socketio client | |
# | |
import sys, logging | |
logging.captureWarnings(True) | |
#logging.basicConfig(level=logging.DEBUG) |
These two small changes worked for me to get h264 support. I also set the BitRate value in settings dialog to only 4000 as the default 12000 gives very large files. The options passed to Mencoder here are probably not perfect. They cause warnings in the err log file but the resulting video files have been working fine for me in XBMC. See my blog post at neocogent.com for more description and also generating filmstrip control parms programatically using SQL queries. | |
Insert this class into file /usr/lib/python2.7/dist-packages/photofilmstrip/core/renderer/MovieRenderer.py (right after the MPEG4AC3Renderer class is good). | |
class H264AVCRenderer(MEncoderRenderer): | |
def __init__(self): | |
MEncoderRenderer.__init__(self) | |
@staticmethod |