This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_repo.php
80 lines (67 loc) · 4.12 KB
/
main_repo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
$title="Repository";
include "header.php";
?>
<div class='content'>
<div class="header">
<h1>Repository</h1>
<h2>Who works on what? Where?</h2>
</div>
<h1>Get Cinelerra-CV source code</h1>
<p>The source code of of Cinelerra-CV is available from a git repository.<br/>
Additionally, release tarballs are available on our <a href=/releases/>releases page</a>.<p>
<p>You can clone the repo of the last stable release (2.3) with:</p>
<pre>git clone git://git.cinelerra-cv.org/CinelerraCV.git -b rel2.3.0 cinelerra-cv-2.3</pre>
<p>Alternatively you can clone the ever growing git repository:</p>
<pre>git clone git://git.cinelerra-cv.org/CinelerraCV.git cinelerra-cv</pre>
<p>The stable repo is maintained by a small group of core developers. You can browse the <a href="https://git.cinelerra-cv.org/gitweb?p=CinelerraCV.git;a=summary">CinelerraCV repository</a> on-line, thanks to Gitweb.</p>
<h2><a name="experimental">Experimental code</a></h2>
<p>Some developers are working around specific issues on experimental repos. You are welcome to test the application and report back to the <a href="contact.php">mailing list</a>.</p>
<h3>einar - core</h3>
<blockquote>
<p>
Einar Rünkaru is working with the long-term goal of improving the core fixing bugs and design flaws to get a stronger code, better designed to fit a community development. It's a quite invasive work, that needs a lot of debugging.</p>
<p><a href="https://git.cinelerra-cv.org/gitweb?p=einar/cinelerra.git;a=summary">einar's repo</a></p>
</blockquote>
<h3>j6t - merging Cinelerra-HV 4.x</h3>
<blockquote>
<b style="color:red;">This project is not being actively worked on anymore.</b>
<p>Johannes Sixt' goal was to merge the Cinelerra-HV releases (4.x) with Cinelerra-CV. Since HV does not provide a GIT repository, this requires a lot of testing and debugging.</p>
<p><a href="https://git.cinelerra-cv.org/gitweb?p=j6t/cinelerra.git;a=summary">j6t's main repo</a></p>
<p>For the <i>merge-4</i> branch (combination of HV 4.1 + CV 2.3), see here:</p>
<p><a href="https://git.cinelerra-cv.org/gitweb?p=j6t/cinelerra.git;a=shortlog;h=refs/heads/merge-4">j6t's merge-4 repo</a> | <a href="https://launchpad.net/~cinelerra-ppa/+archive/ubuntu/cinelerra-beta">Ubuntu packages</a></p>
</blockquote>
<h3>akirad - useful merges from all branches</h3>
<blockquote>
<b style="color:red;">This project is not being actively worked on anymore.</b>
<p>This repository by Paolo Rampino has a blend of the HV-like extended ffmpeg decoding, many of the fixes found in CinCV 2.3 and much improved UI theming from the former Cinecutie project.</p>
<p>Unfortunately, this hasn't been updated in a while and may not compile with recent gcc versions.</p>
<p><a href="https://git.cinelerra-cv.org/gitweb?p=akirad/cinelerra.git;a=summary">akirad's repo</a></p>
</blockquote>
<h3>monty - FFMPEG-based loader</h3>
<blockquote>
<b style="color:red;">This project is not being actively worked on anymore.</b>
<p>Monty Montgomery wrote an improved version of the FFMPEG-based file reader from CinHV 4.1 so that Cinelerra can read many more file formats. Main changes are:</p>
<ul>
<li>updates the internal ffmpeg version to ffmpeg-0.6.</li>
<li>disables the old libmpeg3 loader</li>
<li>properly handles odd-framerate HDV video (eg, the Canon 24F mode where a 24 fps
progressive scan stream is wrapped in a 30fps NTSC container with hard
telecine).</li>
<li>adds a minor autoconf fix for OpenGl detection.</li>
<li>strengthens pixel format handling (including adding JPEG-style
chroma sitings, used by DV, Theora, VPx and MJPEG, which cinelerra's
quicktime internals don't directly support)</li>
<li>corrects handling of audio formats that decode to othe than 16-bit
linear (eg, uncompressed 8 bit audio tracks)</li>
<li>adds a minor workaround to the seeking algo to try to handle AVCHD
files with partially incomplete initial open GOPs</li>
<li>fix latency calculation in the ALSA backend</li>
</ul>
<p>
<a href="http://git.xiph.org/?p=users/xiphmont/cinelerraCV.git;a=summary">monty's repo</a></p>
</blockquote>
<div class="lastmodified">Last modified on October 15, 2017</div>
</div>
<?php include "footer.php"; ?>
</body> </html>