summaryrefslogtreecommitdiff
path: root/src/htdocs/news/news.xml
blob: 0a8a39c7287df8c3a1f85b9e89e731dbddd95961 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
<?xml-stylesheet href="news.xsl" type="text/xsl"?>
<!DOCTYPE xsl:stylesheet
[
  <!ENTITY % site-entities SYSTEM "../entities.site">
  %site-entities;
]>
<news>
  <item>
    <date>1999-10-31 00:00</date>
  
    <content><p>As of 9:10pm PST Oct 31, 1999, GStreamer has officially become a public
project.  I've released 0.0.9, in it's current somewhat sorry state, to
get it out to anyone who wants to look around.  A 0.1.0 release is planned
in the near future (a couple weeks away, maybe) with a lot more of the
plugins actually working, but for now it's still pretty cool.</p>

<p><tt>&lt;drumroll&gt;</tt>And here it
is...<tt>&lt;/drumroll&gt;</tt>: <tt><A href="http://download.sourceforge.net/gstreamer/gstreamer-0.0.9.tar.gz">gstreamer-0.0.9.tar.gz</A></tt>

</p>
    </content>
    <title>GStreamer 0.0.9 released!</title>
  </item>


  <item>  <date>2000-01-27 00:00</date>
  
    <content><p>I've just set up a SourceForge project for GStreamer, which means the
page is now hosted on their servers, and CVS access will be up soon.
You can go to <A href="http://sourceforge.net/project/?group_id=1936">the
project's home page on SourceForge</A> for mailing lists, forum
discussions, release, etc.  All of it will be here as well,
eventually.</p>
    </content>
    <title>GStreamer now a SourceForge</title>
  </item>


  <item>  <date>2000-03-23 00:00</date>
  
    <content><p>This redesign of the website should allow better structure and more
documentation to show up as it's written.</p>


    </content>
    <title>New website design</title>
  </item>


  <item>  <date>2001-01-10 00:00</date>
  
    <content><p>
Today we finally released version 0.1.0, dubbed
&quot;Slipstream&quot;.  The number of features is astounding even to us,
which is why it's taken 3 days since code-freeze just to get the release
out &lt;g&gt;.  You can get a list of features from the
<A href="&site;/features/">main page</A>,
read more in the <A href="&site;/documentation/">documentation section</A>, or
go <A href="&site;/download/">download it</A>!</p>


    </content>
    <title>GStreamer&quot;Slipstream &quot; 0.1.0 Released!</title>
  </item>


  <item>  <date>2001-01-31 00:00</date>
  
    <content>
<p>As of January 29, 2001, RidgeRun, Inc. has hired Erik Walthinsen, aka Omega,
head developer of the GStreamer project.  His job will be continued
development of GStreamer, as well as specific projects using GStreamer on
embedded Linux systems.
</p>
    </content>
    <title>GStreamer now sponsored by <A href="http://www.ridgerun.com/">RidgeRun, Inc.</A>!</title>
  </item>


  <item>  <date>2001-02-25 00:00</date>
  
    <content><p>This release includes several major build and bug fixes.  There are
several core subsystem updates, but nothing major in this release.
<b>Update</b> An <A href="http://www.linuxpower.com/display.php?id=205">interview</A> with 
the lead developer, <A href="mailto:omega@temple-baptist.com">Omega</A> has just been
posted to <A href="http://www.linuxpower.org/">LinuxPower</A>.
<b>Update</b> See slashdot for all the <A href="http://slashdot.org/article.pl?sid=01/02/26/0124235&amp;mode=thread">details</A>. 
&lt;g&gt;</p>


    </content>
    <title>GStreamer &quot;Lots of Duct Tape&quot; 0.1.1 Released!</title>
  </item>


  <item>  <date>2001-03-01 00:00</date>
  
    <content><p>We've got <A href="http://linux.com/multimedia/newsitem.phtml?sid=1&amp;aid=11834">another
interview online</A>, this time with both Erik
Walthinsen and Wim Taymans.</p>



    </content>
    <title>Linux.com Interview of GStreamer developers</title>
  </item>


  <item>  <date>2001-03-11 00:00</date>
  
    <content><p>Well, it's only a few weeks until <A href="http://guadec.gnome.dk/">GUADEC</A>.
If you'd like to attend, please <A href="mailto:omega@ridgerun.com">send
me some email</A> and I'll add you to the list of attendees.</p>


    </content>
    <title>2001: A GStreamer Odyssey GUADEC get closer</title>
  </item>


  <item>  <date>2001-03-29 00:00</date>
  
    <content><p>These logos have been made by <A href="mailto:brock@ridgerun.com">Brock Frazier at RidgeRun</A>.  We need
to decide on what our logo is going to be very quickly, so t-shirts can
somehow be printed for GUADEC.</p>


    </content>
    <title>Proposed logos posted</title>
  </item>


  <item>  <date>2001-04-02 00:00</date>
  
    <content><p>Tonight in Den Haag, NL, there will be a talk on GStreamer given by
Erik Walthinsen (Omega).  More about it <A href="http://lnux.denhaag.org/">on the LUG website</A></p>


    </content>
    <title>Den Haag LUG talk</title>
  </item>


  <item>  <date>2001-05-15 00:00</date>
  
    <content><p>A <A href="http://www.linuxrising.com/files/gstreroadmap2.html">roadmap for
the next two minor releases</A> is now available.  It's being 
updated to make it closer to reality constantly, but at some point
will be frozen.</p>


    </content>
    <title>GStreamer Roadmap Available</title>
  </item>


  <item>  <date>2001-05-20 00:00</date>
  
    <content><p>A new list has been created for daily email that was previously sent
to the gstreamer-devel list.  The new list is called <A href="http://lists.sourceforge.net/lists/listinfo/gstreamer-daily">gstreamer-daily</A>, 
and will take the load of IRC logs and other nightly events off
gstreamer-devel.  Subscribe to the list if you wish to continue getting
these nightly emails, or make use of the list archives otherwise.</p>


    </content>
    <title> New mailing-list created</title>
  </item>


  <item>  <date>2001-06-07 00:00</date>
  
    <content>
<p>The latest release of GStreamer is available!</p>
    </content>
    <title>GStreamer &quot;Critical Mass&quot; 0.2.0 released!</title>
  </item>


  <item>  <date>2001-06-14 00:00</date>
  
    <content><p>This weeks Development section of LWN has a fair bit of information
about GStreamer in it.</p>


    </content>
    <title>GStreamer makes it to the top of LWN's <A href="http://www.lwn.net/2001/0614/devel.php3">Development section</A></title>
  </item>


  <item>  <date>2001-06-27 00:00</date>
  
    <content><p>
The major feature of this release is the switch to GObject (glib-2.0)
with the backwards-compatibility shim necessary to compile against
gtk+-1.2 still. New plugins, and the ability to disable several large
subsystems at compile time are also in this release.</p>
    </content>
    <title>GStreamer &quot;Return of the Sedi Master&quot; 0.2.1 released!</title>
  </item>


  <item>  <date>2001-08-03 00:00</date>
  
    <content><p>The website gets a new logo and the website is redesigned using Server Side includes 
and Cascading Stylesheets to use the colors of the logo in the page design.</p>


    </content>
    <title>GStreamer website gets an updated look.</title>
  </item>


  <item>  <date>2001-08-10 00:00</date>
  
    <content><p><A href="http://mozstreamer.mozdev.org/">Mozstreamer</A> the <A href="http://www.mozilla.org">Mozilla</A> and <A href="http://galeon.sourceforge.net">Galeon</A> plugin based upon GStreamer is now
available.</p>
<p>Thanks goes to Steven Crouse and <A href="http://www.oeone.com/">OEone
Corporation</A> for making Mozstreamer.</p>


    </content>
    <title>Mozstreamer listed on the front page of mozilla.org</title>
  </item>


  <item>  <date>2001-10-07 00:00</date>
  
    <content><p><A href="http://benow.ca/">BeNOW.ca</A> has started regularly
rebroadcasting <A href="http://cjsw.com/">CJSW</A>, a Calgary radio
station, using GStreamer.  He's got a radio receiver attached to an
SBLive!, using gstreamer-launch to encode and send the audio to an
icecast server. <b>Update</b> here's an <A href="http://gstreamer.freedesktop.org/media/small/benow.mp3">mp3 clip</A> (warning: mpg123 has a cow) and
<A href="http://gstreamer.net/media/gstreamer-shoutout2.mp3">another</A> of the cast, complete with mention of GStreamer &lt;g&gt;</p>


    </content>
    <title>BeNOW.ca rebroadcasting radio with GStreamer</title>
  </item>


  <item>  <date>2001-12-09 08:58</date>
  
    <content>
We have just put up an article/log of a discussion between Bill Haneman and Wim
Taymans on the subject of Multimedia and Accessibility.  Interesting reading if
you want to know more about making multimedia apps accessible.
    </content>
    <title>Accessibility and Multimedia</title>
  </item>


  <item>  <date>2001-12-12 15:43</date>
  
    <content>
After nearly six months of development, the GStreamer team is extremely pleased
to announce version 0.3.0. Links to source tarballs and binary packages can be
found <A href="&site;/releases/gstreamer/">here</A>.
    </content>
    <title>GStreamer 0.3.0 "Most Eventful Ever" Released</title>
  </item>


  <item>  <date>2002-01-08 12:10</date>
  
    <content>
After weeks of heavy development the GStreamer team is very happy to announce
GStreamer 0.3.1. Lots of great stuff in this release so please check it out.
    </content>
    <title>GStreamer 0.3.1 released</title>
  </item>


  <item>  <date>2002-01-13 17:34</date>
  
    <content>
Thanks to the work of David Lehn, we now have Debian packages available for the
recent 0.3.1 release.
    </content>
    <title>Debian Packages for 0.3.1 Now Available</title>
  </item>


  <item>  <date>2002-02-02 10:27</date>
  
    <content>
The GStreamer team is proud to announce GStreamer 0.3.2 'Do-B-day'.
<b>Update</b> Since most developers were using glib-2.0 during QA for the last
release, the gtk+-1.2 part got a bit overlooked. If you can't fix the compile
errors yourself, either build against glib-2.0 or go back to 0.3.1. Onward!
    </content>
    <title>GStreamer 0.3.2 Available</title>
  </item>


  <item>  <date>2002-03-10 06:13</date>
  
    <content>
The 0.3.3 release of GStreamer is now available codename 'GUADEC By Foot'.
    </content>
    <title>GStreamer 0.3.3 Released</title>
  </item>


  <item>  <date>2002-04-07 18:23</date>
  
    <content>Docs have been updated, check the <A href="&site;/documentation/">docs page</A> for more info. Use the CVS docs. We've got some new python bindings in the gst-python module (CVS only), including an example DVD player (in python!). We've also got a new parser; <code>gst-launch filesrc ! spider ! osssink</code> finally works. Release coming in a couple of weeks...
    </content>
    <title>Miscellaneous updates</title>
  </item>


  <item>  <date>2002-04-12 08:27</date>
  
    <content><TABLE>
<TR>
<TD>
At <A href="http://www.guadec.org/">GUADEC</A>, some of us took the opportunity to do a live code review.  We did this together with two people from <A href="http://mediaapplicationserver.net/">MAS</A>, a recently released new media server.

From left to right : Leon (MAS), Ronald (BBB), Wim (wtay), Thomas (thomasvs), Erik (omega), Mike (MAS)
<I>Picture courtesy of Jeff Waugh</I>
</TD>
<TD>
<A href="&site;/images/guad3c.jpg">
<IMG border="0" src="&site;/images/guad3c-small.jpg" /></A>
</TD>
</TR>
</TABLE>
    </content>
    <title>GStreamer Code Review at Guadec</title>
  </item>


  <item>  <date>2002-04-18 13:00</date>
  
    <content>Once more the GStreamer team is here with a new and exciting release. Fewer bugs, more documentation and some new plugins.
    </content>
    <title>GStreamer 0.3.4 released</title>
  </item>


  <item>  <date>2002-04-24 14:23</date>
  
    <content><A href="http://effectv.sourceforge.net/">EffecTV</A> is a cool project which allows you to add real-time effects to a video stream captured from a v4l-device.  Combining this with GStreamer allows you to use any effecTV plugin in any pipeline.  This can easily let you do really nice things.  Here's an example.
<p>
Starting from <A href="http://gstreamer.freedesktop.org/media/medium/alien.mpg">Alien Song</A>, we first run the pipeline
<PRE>gst-launch gnomevfssrc location="http://gstreamer.freedesktop.org/media/medium/alien.mpg" ! mpegdemux video_%02d! <BR/>{ queue ! mpeg2dec ! colorspace ! agingTV ! colorspace ! <BR/> mpeg2enc ! disksink location=alien-age.mpg }</PRE> to re-encode the movie with the agingTV effect.  This is the <A href="http://gstreamer.net/media/alien-age.mpg">result</A>.
</p><p>
Next, we re-encode the same video using the edgeTV plug-in :
<PRE>gst-launch gnomevfssrc location="http://gstreamer.freedesktop.org/media/medium/alien.mpg" ! mpegdemux video_%02d! <BR/>{ queue ! mpeg2dec ! colorspace ! edgeTV ! colorspace ! <BR/> mpeg2enc ! disksink location=alien-edge.mpg }</PRE>
This is the <A href="http://gstreamer.net/media/alien-edge.mpg">result.</A>
</p><p>Finally, we add the effects; we create an aged version of the edgy version.  This is where GStreamer really shines; in effectv you have to use loopback v4l devices.
<PRE>gst-launch gnomevfssrc location="http://gstreamer.freedesktop.org/media/medium/alien.mpg" ! mpegdemux video_%02d! <BR/> { queue ! mpeg2dec ! colorspace ! edgeTV ! <BR/> agingTV ! colorspace ! mpeg2enc ! disksink location=alien-edge-age.mpg }</PRE>
And here's the <A href="http://gstreamer.net/media/alien-edge-age.mpg">result.</A>
</p><p>
We hope to work with the effecTV authors to provide a convenient library which will allow easy access to these great effects.
</p><p>
The effecTV plug-ins : soon coming to a gst-enabled video editor near you !
</p><p>
<I>sample created movies lack sound and encoding has been ctrl-c'd at random moments because I'm lazy.  Colorspace is necessary because the effecTV plugins work in the RGB colorspace and MPEG video works in the YUV colorspace.  The effecTV have just been added to CVS code and will be in the next stable GStreamer release.
</I>
Here's screenshots of three different effects applied on the alien-song movie:
</p><p>
<IMG SRC="&site;/images/age.png" ALT="The EffecTV Age effect" /><BR/><I>The Age Effect</I>
<IMG SRC="&site;/images/edge.png" ALT="The EffecTV Edge effect" /><BR/><I>The Edge Effect</I>
<img src="&site;/images/age_edge.png" ALT="The EffecTV Edge/Age effects combined" /><BR/><I>The Age/Edge Effects Together</I>
</p>
    </content>
    <title>GStreamer ports effecTV plug-ins</title>
  </item>


  <item>  <date>2002-05-14 11:47</date>
  
    <content>Jorn Baayen has just submitted a set of patches which ports GNOME 2.0 over to using GStreamer. These patches will hopefully go into CVS not long after 2.0 is released and be included in the next release after 2.0. You can see Jorn's
announcement <A HREF="http://mail.gnome.org/archives/desktop-devel-list/2002-May/msg00371.html">
here</A>.
    </content>
    <title>GNOME 2 ported to GStreamer</title>
  </item>


  <item>  <date>2002-05-27 12:51</date>
  
    <content>The long wait is over. Wim Taymans have now commited the code
to enable the event based seek system in GStreamer. This means
GStreamer based applications can now have world class seek support. Seek enable YOUR app today!
    
    </content>
    <title>Event based seek is in!</title>
  </item>


  <item>  <date>2002-07-05 16:27</date>
  
    <content>
In our effort to change your lifes forever we are happy to announce GStreamer
0.4.0 'Desperately Seeking Sexiness' ready for public consumption. Lots of
important fixes and additions in this release.
    </content>
    <title>GStreamer 0.4.0 released</title>
  </item>


  <item>  <date>2002-07-24 07:02</date>
  
    <content>Steve Baker fixed the GStreamer Nautilus view (inside gst-player).
<p>
Here are some screenshots of it :
</p>
<TABLE>
<TR>
<TD>
<A href="&site;/images/gst-nautilus-1.png" target="blank">
<IMG src="&site;/images/gst-nautilus-1-small.png" border="0" /></A>
</TD>
<TD>
<A href="&site;/images/gst-nautilus-2.png" target="blank">
<IMG src="&site;/images/gst-nautilus-2-small.png" border="0" /></A>
</TD>
</TR>
</TABLE>
<P>
Michael Meeks has been overheard saying he was "<B>duly impressed</B>" by the view in particular and GStreamer's progress in general.
</P>
    </content>
    <title>Nautilus view using GStreamer works</title>
  </item>


  <item>  <date>2002-07-11 22:18</date>
  
    <content>0.4.0 is our first release to have its <A href="&site;/documentation/">documentation</A> on the site since 0.3.0. We even have a PDF version of the manual. If you're interested in helping us finish the <A href="&site;/data/doc/gstreamer/head/pwg/html/index.html">plugin writer's guide</A>, drop us a line.
    </content>
    <title>Documentation Updated</title>
  </item>


  <item>  <date>2002-08-06 06:58</date>
  
    <content>We created a new CVS module, <B>gst-template</B>, which holds a few directories that contain a template file layout which you can use as a starting point in writing your own GStreamer code.
<P>
These templates use autoconf and automake.  You can dive right in and modify these to what you want to do.  At this point there is gst-app for a GStreamer application, and gst-plugin for a GStreamer plug-in.  Check them out and try it yourself.  Any feedback is appreciated.
</P>
For help in getting these from cvs, check our
<A href="http://sourceforge.net/cvs/?group_id=1936">SourceForge CVS page</A>.
    </content>
    <title>Template code for applications and plug-ins available</title>
  </item>


  <item>  <date>2002-08-18 02:40</date>
  
    <content>Thanks to the great work of Tim Jansen, there is now C++/KDE bindings for GStreamer. So if you have been wanting to make a KDE or Qt application using GStreamer there is no time better time than now to start. Check out <A HREF="http://www.geocrawler.com/lists/3/SourceForge/1504/0/9341282/">
the announcement for details</A>.
Also, here's a screenshot of a simple player he knocked up with the bindings :
<img src="&site;/images/kdeplayer.png" border="0" ALT="kde player" />
    </content>
    <title>GStreamer now with KDE bindings!</title>
  </item>


  <item>  <date>2002-09-03 02:55</date>
  
    <content><B>Andy Wingo</B>, our demon coder from hell, has put in the missing code that finally allows the editor to play video ! Not only that, but he also added an option that parses the GStreamer command pipelines you're all used to.  The next release of gst-editor (the first using GNOME 2 technology) is bound to kick serious ass !
<P>
See these screenshots for a sneak preview :
<TABLE>
<TR>
<TD>
the result of launching
<BR/>'gst-editor -l filesrc location=/home/thomas/gst/media/AlienSong.mpg ! mpegdemux video_%02d! { queue ! mpeg2dec ! colorspace ! xvideosink disable-xv=true } mpegdemux0.audio_%02d! { queue ! mad ! osssink }'
<BR/>
(I set disable-xv to true to take the screenshot)
</TD>
<TD>
<A href="&site;/images/gst-editor-0.4.1-launched.png" alt="launched gst-editor">
<IMG src="&site;/images/gst-editor-0.4.1-launched.gif" border="0" /></A>
</TD>
</TR>
<TR>
<TD>
a manually re-ordered pipeline window to show the structure
</TD>
<TD>
<A href="&site;/images/gst-editor-0.4.1-clean.png" alt="launched gst-editor">
<IMG src="&site;/images/gst-editor-0.4.1-clean.gif" border="0" /></A>
</TD>
</TR>
</TABLE>
</P>
    </content>
    <title>GStreamer Editor now plays video !</title>
  </item>


  <item>  <date>2002-09-22 05:33</date>
  
    <content>
The GStreamer revolution continues with the announcement of GStreamer 0.4.1.
This release has focused on fixing bugs and stabilizing the current feature
set. This has lead to much more polished experience for developers and users
alike. There are some new features however like experimental Flash support and
iRadio metadata support.
    </content>
    <title>GStreamer 0.4.1 is available</title>
  </item>


  <item>  <date>2002-09-28 14:17</date>
  
    <content>
The GStreamer teams very own media player, gst-player, has a new release out
today to go with our recently released GStreamer release. gst-player 0.4.1 has
many new nice features like improved GNOME 2 integration, Nautilus view,
improved error handling and more. Check the release notes for all the details
and download instructions.
    </content>
    <title>GStreamer Player 0.4.1 released</title>
  </item>


  <item>  <date>2002-10-06 15:15</date>
  
    <content>
After two years of (sporadic) development, <A
href="&site;/modules/gst-editor.html">gst-editor</A>, GStreamer's graphical
pipeline editor, has finally been released
into the wild. The code is very alpha and is prone to eating small mammals,
so don't use it near your cat. Please report any reproduceable bugs to <A
href="http://bugzilla.gnome.org/buglist.cgi?product=GStreamer&amp;component=gst-editor">Gnome
bugzilla</A>.
    </content>
    <title>First-Ever Release of GStreamer Editor</title>
  </item>


  <item>  <date>2002-10-20 05:17</date>
  
    <content>You can now find the <A HREF="http://gnonlin.sourceforge.net">Gnonlin</A> project on the web
with some preliminary information and of course the current source code.
Gnonlin is our companion library for GStreamer for non-linear video editors.
So if you are interested in these kind of applications make sure to visit <A HREF="http://gnonlin.sourceforge.net">Gnonlin on the web</A>.
    </content>
    <title>Gnonlin gets a real web presence</title>
  </item>


  <item>  <date>2002-10-29 01:26</date>
  
    <content>David Schleef has been developing a LGPL Flash rendering libary which in turn the GStreamer Flash plugins are using. This library is independent of GStreamer as such, only non-system dependency being libart. So if Flash rendering is your thing be sure to check out the new <A HREF="http://swfdec.sourceforge.net/">libSwfdec</A> homepage.
    </content>
    <title>Swfdec website online</title>
  </item>


  <item>  <date>2002-11-01 08:10</date>
  
    <content>
The GStreamer team is proud to announce version 0.4.2 of the GStreamer
Multimedia Framework. This release contains many bugfixes and feature additions
including new wav encoder and libshout2 plugin.
    </content>
    <title>GStreamer 0.4.2 releleased!</title>
  </item>


  <item>  <date>2002-11-01 16:13</date>
  
    <content>Zeeshan Ali Khattak has made a videowall using Red Hat Linux, GStreamer and commodity hardware. To find out how and why, and see some cool pictures, check out the <A HREF="http://www.gstreamer.net/apps/vw/">Video Whale project homepage</A>.

    </content>
    <title>Making Videowall with GStreamer</title>
  </item>


  <item>  <date>2002-12-01 11:11</date>
  
    <content>Want to let people know about the worlds best multimedia architecture? Well know you can as we have now a opened a section where you can order clothes, mugs and other stuff with the GStreamer logo, including our world famous three RGB coloured slugs. So go visit the <A HREF="http://www.gstreamer.net/buystuff/">GStreamer shop</A>.
    </content>
    <title>GStreamer shop opens its doors</title>
  </item>


  <item>  <date>2002-12-10 12:32</date>
  
    <content>The GStreamer team is proud to announce our latest development
release. Lots of work has gone into this one and things are really starting to flesh out.
    </content>
    <title>GStreamer "Private Dancer" 0.5.0</title>
  </item>


  <item>  <date>2002-12-19 14:38</date>
  
    <content>Zeeshan Ali has put up a how-to explaining how he made a video Wall using GStreamer. So read the <A HREF="http://gstreamer.freedesktop.org/apps/videowhale.html">how-to</A>
and <A HREF="http://www.gstreamer.net/apps/vw/">see the pictures</A>.
    </content>
    <title>Video Wall How-To</title>
  </item>


  <item>  <date>2003-01-07 09:11</date>
  
    <content>Once more we catch the world unprepared by released a new version of GStreamer. Version 0.5.1 contains many bugfixes and little improvements. New features include our threadless scheduler 'opt' and the new ffmpeg based plugin. 
    </content>
    <title>GStreamer 0.5.1</title>
  </item>


  <item>  <date>2003-01-22 11:08</date>
  
    <content>
The GStreamer team has another release ready to satisfy your multimedia needs.
This is a to be considered a release candidate in preparation for our 0.6.0
release later this week. Due to the constant pressure from the GNOME release
team to make this release we found a suitable code name.
    </content>
    <title>GStreamer 0.5.2 released</title>
  </item>


  <item>  <date>2003-02-01 19:03</date>
  
    <content>
The long wait is over. The first ABI stable GStreamer release is now available
for download. This release series will be maintained in parallel with our
development series until we release 1.0.
    </content>
    <title>GStreamer 0.6.0 released</title>
  </item>


  <item>  <date>2003-02-05 08:09</date>
  
    <content>Our own Thomas Vander Stichele was interviewed in preparation for his talk at this years FOSDEM conference. To find out what is happening in the GStreamer world be sure <A HREf="http://www.fosdem.org/index/interviews/interviews_vanderstichele">to read it</A>.
    </content>
    <title>GStreamer hacker Thomas Vander Stichele interviewed</title>
  </item>


  <item>  <date>2003-02-21 14:25</date>
  
    <content>
A major new release of the GStreamer Media player is available. This release
features a huge GUI update and lot better stability.
    </content>
    <title>GStreamer Player 0.5.0 released</title>
  </item>


  <item>  <date>2003-02-22 16:02</date>
  
    <content>The online GStreamer documentation has just been updated to cover the 0.6 release series. Full API docs, a manual and plugin writers guide available for your reading pleasure at <A HREF="http://gstreamer.freedesktop.org/documentation/">the GStreamer documentation page</A>.
    </content>
    <title>GStreamer documentation updated</title>
  </item>


  <item>  <date>2003-03-17 23:46</date>
  
    <content>
We have a new release of the GStreamer editor which works with the 0.6.x stable
series of GStreamer.
    </content>
    <title>GStreamer Editor with new Release!</title>
  </item>


  <item>  <date>2003-04-18 17:08</date>
  
    <content>
We've released a new version that is API and ABI compatible with 0.6.0. This
release features major bugfixes in all areas.
    </content>
    <title>GStreamer 0.6.1 released</title>
  </item>


  <item>  <date>2003-04-23 11:48</date>
  
    <content>
The 0.5.1 release of GStreamer Player is now available. Lots of cleanups and new
stuff in this release. For instance we now support visualization when playing
music and drag and drop form Nautilus. 
    </content>
    <title>GStreamer Player 0.5.1 released</title>
  </item>


  <item>  <date>2003-06-09 16:43</date>
  
    <content>
This new release on the stable branch features a lot of bugfixes.
    </content>
    <title>GStreamer 0.6.2 "Wild Rover" is OUT</title>
  </item>


  <item>  <date>2003-08-27 12:05</date>
  
    <content>A new smashing release of the GStreamer stable branch is out fixing the bugs you have reported in regards to Rhythmbox and Sound Juicer. 
    </content>
    <title>GStreamer 0.6.3 available</title>
  </item>


  <item>  <date>2003-09-14 05:32</date>
  
    <content>We have a new release of our media player application for your  testing pleasure. New for this release is support for video effects and many bug fixes. 
    </content>
    <title>GStreamer Player 0.6.0 released</title>
  </item>


  <item>  <date>2003-10-14 06:34</date>
  
    <content>The GStreamer team is very happy to announce the release GStreamer 0.6.4. -the latest update in our ABI stable 0.6.x release series.  There are many small and minor fixes in this release to enhance your multimedia pleasure. 

In related news, Scott Wheeler has made Suse packages of GStreamer which you can use with his very cool Juk music player and manager for KDE. You'll find Scott's packages also listed in the <A HREF="http://www.gstreamer.net/download/">download section</A>.

    </content>
    <title>GStreamer 0.6.4</title>
  </item>


  <item>  <date>2003-10-22 14:07</date>
  
    <content>The time has finally come. The first release in our new series of development releases is available.
    </content>
    <title>GStreamer 0.7.1</title>
  </item>


  <item>  <date>2003-11-26 13:03</date>
  
    <content>It is time for a new release from the GStreamer development branch. 0.7.2 takes us a big step closer to 0.8 and introduces a lot of nice new plugins and features, like AAC and MVA support.
    </content>
    <title>GStreamer 0.7.2 Released</title>
  </item>


  <item>  <date>2003-12-20 04:57</date>
  
    <content>The league of extraordinary gentlemen is proud to announce another release of the GStreamer 0.7 development series. A lot of work has gone into this release to fix up bugs in current plugins and core. Check out our <A HREF="http://gstreamer.freedesktop.org/releases/gstreamer/0.7.3.html">release notes</A> and grab the tarballs from our <A HREF="http://gstreamer.freedesktop.org/releases/gstreamer">download page</A>
    </content>
    <title>GStreamer 0.7.3 released</title>
  </item>


  <item>  <date>2003-12-21 13:49</date>
  
    <content>In order to send out a strong signal that we are serious about our cross-desktop commitment and to get improved CVS services we are moving our CVS repository to freedesktop.org. We hope that this move will be an positive milestone in our continued development. For details for how to access freedesktop CVS check out the information in our <A HREF="&site;/dev">developers</A> page.
    </content>
    <title>GStreamer moves to Freedesktop.org</title>
  </item>

  <item>
    <date>2004-02-06 13:40</date>
    <title>GStreamer and GStreamer Plugins 0.7.4 released</title>
    <content>
<p>
The GStreamer team is proud to announce another release of the
GStreamer 0.7 development series.
A lot of work has gone into this release to fix up bugs in current plugins
and core.
</p>
<p>
For GStreamer 0.7.4, check out
<a href="&site;/releases/gstreamer/0.7.4.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.7.4.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.7.4.tar.bz2">tar.bz2</a> archive.
</p>
<p>
For GStreamer Plugins 0.7.4, check out
<a href="&site;/releases/gst-plugins/0.7.4.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.7.4.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.7.4.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-02-12 15:24</date>
    <title>GStreamer 0.6.5 "EOS" released</title>
    <content>
<p>
The GStreamer team is proud to announce another release of the
GStreamer 0.6.x stable series.
This release is a service release, fixing some parallel install issues and
documentation build.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.6.5.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.6.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.6.5.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-02-26 18:55</date>
    <title>GStreamer FFmpeg 0.7.1 released</title>
    <content>
<p>
The GStreamer team is proud to announce the first release of the
GStreamer FFmpeg plugin.
</p>
<p>
Check out
<a href="&site;/releases/gst-ffmpeg/0.7.1.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.7.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.7.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>


  <item>
    <date>2004-02-26 18:57</date>
    <title>GStreamer and GStreamer Plugins 0.7.5 released</title>
    <content>
<p>
The GStreamer team is proud to announce another release of the
GStreamer 0.7 development series.
A lot of work has gone into this release to fix up bugs in current plugins
and core.
</p>
<p>
For GStreamer 0.7.5, check out
<a href="&site;/releases/gstreamer/0.7.5.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.7.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.7.5.tar.bz2">tar.bz2</a> archive.
</p>
<p>
For GStreamer Plugins 0.7.5, check out
<a href="&site;/releases/gst-plugins/0.7.5.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.7.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.7.5.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-05 11:02</date>
    <title>GStreamer Plugins 0.6.5 "EOS" released</title>
    <content>
<p>
The GStreamer team is proud to announce another release of the
GStreamer Plugins 0.6.x stable series.

This release is a service release, fixing some parallel install issues and
compilation against newer ALSA and mpeg2dec libraries.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.6.5.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.6.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.6.5.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-09 19:50</date>
    <title>GStreamer 0.7.6 "Almost" and GStreamer Plugins 0.7.6 "There" released</title>
    <content>
<p>
The GStreamer team is proud to announce another release of the
GStreamer 0.7 development series.
This release is a Release Candidate for the final 0.8.0 release due next week,
so please give it your utmost testing effort.
</p>
<p>
For GStreamer 0.7.6, check out
<a href="&site;/releases/gstreamer/0.7.6.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.7.6.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.7.6.tar.bz2">tar.bz2</a> archive.
</p>
<p>
For GStreamer Plugins 0.7.6, check out
<a href="&site;/releases/gst-plugins/0.7.6.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.7.6.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.7.6.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-11 02:30</date>
    <title>GStreamer Pipeline Editor "Flying Delorean" 0.7.0 released</title>
    <content>
<p>
The GStreamer team is happy to announce a new release of the
GStreamer Pipeline Editor.
This release brings gst-editor into line with the latest GStreamer API and support for new features such as internationalisation, and better error handling and debugging.
</p>
<p>
Check out the 
<a href="&site;/releases/gst-editor/0.7.0.html">release notes</a>
or download the
<a href="&site;/src/gst-editor/gst-editor-0.7.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-editor/gst-editor-0.7.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-16 13:16</date>
    <title>GStreamer 0.8.0 "Executive Slacks" and GStreamer Plugins 0.8.0 "Pharmaceutical Itch" released</title>
    <content>
<p>
The GStreamer team is proud to announce the first stable release of the
GStreamer 0.8.x series.
</p>
<p>
For GStreamer 0.8.0, check out
<a href="&site;/releases/gstreamer/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
<p>
For GStreamer Plugins 0.8.0, check out
<a href="&site;/releases/gst-plugins/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-16 14:29</date>
    <title>GStreamer FFmpeg 0.8.0 "In Buildings" released</title>
    <content>
<p>
The GStreamer team is proud to announce the first stable release of the
GStreamer FFmpeg 0.8.x series.
</p>
<p>
Check out the
<a href="&site;/releases/gst-ffmpeg/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-18 10:59</date>
    <title>GStreamer Player 0.8.0 "Losing Grip" released</title>
    <content>
<p>
The GStreamer team is proud to announce the first stable release of the
GStreamer Player 0.8.x series.
</p>
<p>
Check out the
<a href="&site;/releases/gst-player/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-player/gst-player-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-player/gst-player-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-03-31 18:02</date>
    <title>GStreamer Python bindings 0.7.91 released</title>
    <content>
<p>
The GStreamer team is proud to announce the second release of the Python
bindings targetting the 0.8.x series of GStreamer. It is still unstable so make
sure you file a bug for all nasty things you can find.
</p>
<p>
Check out the
<a href="&site;/releases/gst-python/0.7.91.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.7.91.tar.gz">tar.gz</a>
archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-04-15 15:16</date>
    <title>GStreamer 0.8.1 "Snow Brigade" and GStreamer Plugins 0.8.1 "Comforting Sounds" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
For GStreamer 0.8.1, check out
<a href="&site;/releases/gstreamer/0.8.1.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.1.tar.bz2">tar.bz2</a> archive.
</p>
<p>
For GStreamer Plugins 0.8.1, check out
<a href="&site;/releases/gst-plugins/0.8.1.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-04-16 15:50</date>
    <title>GStreamer Monkey's Audio Plugin 0.8.0 "She Drives" released</title>
    <content>
<p>
The GStreamer team is proud to announce the first stable release of the
GStreamer Monkey's Audio Plugin 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-monkeysaudio/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-monkeysaudio/gst-monkeysaudio-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-monkeysaudio/gst-monkeysaudio-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-04-21 16:50</date>
    <title>GStreamer Fedora Core 2 repository online</title>
    <content>
<p>
Packages for Fedora Core 2 are now online as well.  Check our
<A href="&site;/download/fedora.html">Fedora instructions</A> on how to
set up the packages.
</p>
<p>
The repository includes most GStreamer plugins, the editor, the player,
the python bindings, gstreamer-ffmpeg and gstreamer-monkeysaudio.
</p>
    </content>
  </item>

  <item>
    <date>2004-06-04 13:48</date>
    <title>GStreamer 0.8.2 "Gigantic" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.2.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.2.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.2.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-06-05 18:59</date>
    <title>GStreamer 0.8.3 "Oops" released</title>
    <content>
<p>
The GStreamer team is not as proud as usual to announce a new stable release
of the GStreamer 0.8.x series.
</p>
<p>
This release is a hotfix release for the breakage of the switch element
of gst-plugins.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.3.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.3.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.3.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>
  <item>
    <date>2004-06-18 12:38</date>
    <title>AmaroK 1.0 released</title>
    <content>
      <p>
Mark Kretschmann and the AmaroK team announced the 1.0 version of their
great audio player AmaroK. AmaroK uses the best KDE technology available
to create music for your ears and eyes. Like any good multimedia software
these days AmaroK can use GStreamer as its backend. You can find out more
about Amarok and the features of this first release
at <A HREF="http://amarok.kde.org">the AmaroK homepage</A>.
     </p>
    </content>
  </item>

  <item>
    <date>2004-06-22 16:30</date>
    <title>GStreamer Python 0.7.92 "I stick my neck out for nobody" released</title>
    <content>
<p>
The GStreamer team is not as proud as usual to announce a new development release
of the GStreamer Python bindings.
</p>
<p>
Check out
<a href="&site;/releases/gst-python/0.7.92.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.7.92.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.7.92.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-06-23 18:30</date>
    <title>GStreamer Plugins 0.8.2 "Kristiansand" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
This release features over 62 bug fixes and 20 new elements.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.2.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.2.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.2.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-07-16 13:29</date>
    <title>GStreamer FFmpeg 0.8.1 "Just Another Victim" released</title>
    <content>
<p>
The GStreamer team is proud to announce another stable release of the
GStreamer FFmpeg 0.8.x series.
</p>
<p>
Check out the
<a href="&site;/releases/gst-ffmpeg/0.8.1.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-07-18 00:00</date>
    <title>Planet GStreamer Launched</title>
    <content>
<p>
Now you can read the daily ramblings and mindless weblog dribble from the <a href="&site;">GStreamer</a> team at <a href="&site;/planet/">Planet GStreamer</a>!
</p>
<p>
If <a href="&site;/planet/">PG</a> is too much braindump for you, we also now offer a <a href="&site;/news/rss-1.0.xml">GStreamer News RSS 1.0 feed</a> for your pleasure.
</p>
    </content>
  </item>

  <item>
    <date>2004-07-20 21:05</date>
    <title>GStreamer 0.8.4 "Paella" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.4.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.4.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.4.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-08-02 15:57</date>
    <title>GStreamer Plugins 0.8.3 "Water" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.3.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.3.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.3.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-08-16 14:16</date>
    <title>GStreamer 0.8.5 "Stuttgart" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.5.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.5.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-08-31 14:03</date>
    <title>GStreamer Plugins 0.8.4 "Alias" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.4.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.4.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.4.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

 <item>
    <date>2004-09-09 18:03</date>
    <title>Fluendo CEO interviewed on OSNEWS</title>
    <content>
<p>
The CEO of <A HREF="http://www.fluendo.com">Fluendo</A> Julien Moutte is interviewed about Fluendo and its plans around GStreamer. The interview covers Fluendo´s distributed streaming media server and also features a demo of their soon to be released java port of Ogg Theora.
</p>
<p>
Check out
<a href="http://www.osnews.com/story.php?news_id=8218"> the interview on OSNEWS</a>
</p>
    </content>
  </item>

  <item>
    <date>2004-10-05 15:21</date>
    <title>GStreamer 0.8.6 "Narc" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.6.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.6.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.6.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-10-06 19:01</date>
    <title>GStreamer Plugins 0.8.5 "Take You On" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.5.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.5.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-10-06 19:05</date>
    <title>GStreamer 0.8.7 "A Cruise" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.7.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.7.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.7.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-10-09 20:42</date>
    <title>GStreamer FFmpeg 0.8.2 "Titan Shifting Gears" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-ffmpeg/0.8.2.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.2.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.2.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-10-11 18:12</date>
    <title>gst-python 0.7.93 "I aint sleepy either" released</title>
    <content>
<p>
The GStreamer team is proud to announce the fourth release of the Python
bindings targetting the 0.8.x series of GStreamer. It is still unstable so make
sure you file a bug for all nasty things you can find.
</p>
<p>
Check out the
<a href="&site;/releases/gst-python/0.7.93.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.7.93.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.7.93.tar.bz2">tar.bz2</a>archive.
</p>
    </content>
  </item>

  <item>    
    <date>2004-11-08 23:57</date>
    <title>gst-editor 0.8.0 "Si Senor!" released</title>
    <content>
<p>
A new release of the GStreamer graphical pipeline editor, gst-editor,
containing various fixes and enhancements.
</p>
<p>
Check out the
<a href="&site;/releases/gst-editor/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-editor/gst-editor-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-editor/gst-editor-0.8.0.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-11-15 15:08</date>
    <title>gst-python 0.8.0: Play it, Sam. Play "As Time Goes By" released</title>
    <content>
<p>
The GStreamer team is proud to announce the first stable release of the Python
bindings targetting the 0.8.x series of GStreamer. 
</p>
<p>
Check out the
<a href="&site;/releases/gst-python/0.8.0.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.8.0.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.8.0.tar.bz2">tar.bz2</a>archive.
</p>
    </content>
  </item>

   <item>
    <date>2004-11-25 11:44</date>
    <title>Interview with KDE Multimedia hacker Scott Wheeler</title>
    <content>
     <p>
OpenForBusiness interviews Scott Wheeler maintainer of the JuK media player
and KDE multimedia hacker. Topics includes among other things JuK and of course usage of GStreamer in KDE.
     </p>
    </content>
  </item>

  <item>
    <date>2004-11-25 19:58</date>
    <title>GStreamer Plugins 0.8.6 "IOU Love" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.6.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.6.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.6.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-11-29 09:40</date>
    <title>Amarok 1.2-beta 1 released</title>
    <content>
<p>
The amaroK team has <a href="http://amarok.kde.org/content/view/31/2/">announced</a> their 1.2 beta 1 release. The release features such goodies as a 10-band graphical equalizer for GStreamer and Vorbis stream metadata support.
</p>
   </content>
   </item>

  <item>
    <date>2004-11-29 13:34</date>
    <title>gst-python 0.8.1: "Don't listen to him, Sascha. Fill it up!" released</title>
    <content>
<p>
The GStreamer team is proud to announce the second stable release of the Python
bindings targetting the 0.8.x series of GStreamer. 
</p>
<p>
Check out the
<a href="&site;/releases/gst-python/0.8.1.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.8.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.8.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-12-06 12:00</date>
    <title>Fluendo announces sponsorship of Xiph.org for Vorbis and Theora
RTP support</title>
    <content>
<p>
Fluendo have done two press relases of interest to the GStreamer community
recently. The first announced the offical launch of the Flumotion open source
project and <a href="http://www.flumotion.net">website</a>. The second press
release is about how we are sponsoring Xiph.org to implement specifications for
Vorbis and Theora over RTP. You find this <a
href="http://www.fluendo.com/press/releases/PR-2004-03.html">press release
here</a>.
</p>
    </content>
  </item>

  <item>
    <date>2004-12-08 12:00</date>
    <title>Interview on OSNEWS with amaroK developers</title>
    <content>
<p>
amaroK developers Mark, Max and Leinir are being <a
href="http://www.osnews.com/story.php?news_id=9105">interviewed on osnews</a>
about their music player amaroK, GStreamer and multimedia in general. Be sure
to check it out.
</p>
    </content>
  </item>

  <item>
    <date>2004-12-20 12:00</date>
    <title>First release of Pitivi Non-linear editor</title>
    <content>
<p>
The <a href="http://www.pitivi.org">Pitivi</a> team proudly announced the first
release of Pitivi, a non-linear video editor using the GStreamer framework. Be
sure to check out this first release of what is destined to be the best NLE the
world has ever seen :).
</p>
   </content>
   </item>

  <item>
    <date>2004-12-23 13:01</date>
    <title>GStreamer 0.8.8 "I'll Take Care Of You" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.8.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.8.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.8.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2004-12-27 20:20</date>
    <title>GStreamer FFmpeg 0.8.3 "Tiny Piece of Plastic" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gst-ffmpeg/0.8.3.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.3.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.3.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-01-05 13:34</date>
    <title>GStreamer Plugins 0.8.7 "Hyperspace" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
It also wishes you a happy New Year !
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.7.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.7.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.7.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-01-14 13:40</date>
    <title>gst-player officially unmaintained and deprecated</title>
    <content>
<p>
gst-player has been part of GStreamer almost from day one, but only been
maintained at irregular intervals. Currently it is quite broken in many cases
and we have due to this decided to officially remove it from the project as
today there are better alternatives. This means all references to the player
have been removed and the bugzilla entry will also be removed. If you are
looking for a GTK+-based video player using GStreamer we recommend <a
href="http://www.hadess.net/totem.php3">Totem</a>.
</p>
    </content>
  </item>

  <item>
    <date>2005-01-20 19:00</date>
    <title>GStreamer licensing advisory online</title>
    <content>
<p>
GStreamer is a project which aims to fullfill an important part of the
infrastructure for free and open source operating systems. As a result of this
we need to make sure everything we do is licensed in a way that enables us to
fullfill this role well. To help ensure this we have, after a lot of discussion
and gathering of external feedback, put together <a
href="&site;/documentation/licensing.html">this
licensing advisory</a>. It explains both how plugins for GStreamer will have to
be licensed for us to approve them for inclusion and suggestions for how free
software developers should license their software to solve the practical
problems facing us today. We strongly advise everyone to read this. The content
of this advisory is also included in our FAQ.  </p>
    </content>
  </item>

  <item>
    <date>2005-02-08 12:44</date>
    <title>GStreamer 0.8.9 "Like Eating Glass" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.9.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.9.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.9.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-03-07 18:07</date>
    <title>GStreamer Plugins 0.8.8 "Fluded" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release
of the GStreamer Plugins 0.8.x series.
</p>
<p>
It also wishes you a happy New Year !
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins/0.8.8.html">release notes</a>
or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.8.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.8.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>
 
  <item>
    <date>2005-05-03 15:54</date>
    <title>GStreamer 0.8.10 "No Fun" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.10.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.10.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.10.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-05-25 20:11</date>
    <title>GStreamer Plugins 0.8.9 "Old Hat"</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of GStreamer 
Plugins in the 0.8.x stable release series.
</p>
<p>
Check out <a href="&site;/releases/gst-plugins/0.8.9.html">release page</a>
for details.
</p>
</content>
</item>

  <item>
    <date>2005-05-25 20:32</date>
    <title>Gnonlin 0.2.1</title>
    <content>
<p>
A new version of Gnonlin was made today. Gnonlin is a library for making
nonlinear video editors. With this release all Gnonlin elements can
be handled using only the standard GStreamer API.
</p>
<p>
Check out <a href="http://gnonlin.sourceforge.net/">Gnonlin homepage for more details</a>.
</p>
</content>
</item>

<item>
    <date>2005-05-25 20:36</date>
    <title>Nokia launch mobile device using GStreamer</title>
    <content>
<p>
Nokia today announced the <a href="http://www.nokia.com/nokia/0,,75023,00.html">Nokia 770</a> web tablet which runs GNU/Linux and uses GStreamer for its multimedia. Check out their <a href="http://www.maemo.org/">developer page</a> for details. This is a great validation of the effort the GStreamer team and we are very happy about GStreamer being used by Nokia for their device.
</p>
</content>
</item>

<item>
    <date>2005-06-11 01:47</date>
    <title>GStreamer FFMpeg 0.8.5 "For the better of the world" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer FFmpeg 0.8.x series. See the
<a href="&site;/releases/gst-ffmpeg/0.8.5.html">release notes</a>
or download the
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.5.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.8.5.tar.bz2">tar.bz2</a> archive.
</p>
</content>
</item>

  <item>
    <date>2005-06-17 19:28</date>
    <title>GStreamer 0.9.1 "Left" released</title>
    <content>
<p>
The GStreamer team is petrified to announce a new release of the
GStreamer Core in the
GStreamer 0.9 development series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.9.1.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.9.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.9.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-06-17 19:29</date>
    <title>GStreamer Base Plugins 0.9.1 "Right" released</title>
    <content>
<p>
The GStreamer team is petrified to announce a new release of the
GStreamer Base Plugins in the
GStreamer 0.9 development series.
</p>
<p>
Check out
<a href="&site;/releases/gst-plugins-base/0.9.1.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gst-plugins-base-0.9.1.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gst-plugins-base-0.9.1.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-06-21 18:38</date>
    <title>GStreamer Python 0.8.2 'Another one bites the dust'</title>
    <content>
<p>
A new better, strong, faster, cuter and in general more fantastic release of
the GStreamer python bindings are out. Get it while its hot and juicy.
</p>
<p>
Check out
<a href="&site;/releases/gst-python/0.8.2.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.8.2.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.8.2.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-07-01 18:08</date>
    <title>GStreamer Plugins 0.8.10 "Jangle"</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of GStreamer 
Plugins in the 0.8.x stable release series.
</p>
<p>
Check out <a href="&site;/releases/gst-plugins/0.8.10.html">release page</a>
for details.
</p>
    </content>
  </item>

  <item>
    <date>2005-08-05 14:00</date>
    <title>GStreamer FFMpeg 0.8.6 "Vamoz a la Playa"</title>
    <content>
<p>
The GStreamer team is proud to announce a new release of the GStreamer
FFMpeg plugins for the 0.8.x stable release series.
</p>
<p>
Check out <a href="&site;/releases/gst-ffmpeg/0.8.6.html">release page</a>
for details.
</p>
    </content>
  </item>

  <item>
    <date>2005-09-04 14:41</date>
    <title>GStreamer 0.8.11 "So Long ..." released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of the
GStreamer 0.8.x series.
</p>
<p>
Check out
<a href="&site;/releases/gstreamer/0.8.11.html">release notes</a>
or download the
<a href="&site;/src/gstreamer/gstreamer-0.8.11.tar.gz">tar.gz</a> or
<a href="&site;/src/gstreamer/gstreamer-0.8.11.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-09-04 14:43</date>
    <title>GStreamer Plugins 0.8.11 "... And Thanks For All The Fix"</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of GStreamer 
Plugins in the 0.8.x stable release series.
</p>
<p>
Check out <a href="&site;/releases/gst-plugins/0.8.11.html">release page</a>
for details or download the
<a href="&site;/src/gst-plugins/gst-plugins-0.8.11.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-plugins/gst-plugins-0.8.11.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2005-09-05 19:10</date>
    <title>GStreamer 0.9 plug-ins split-up</title>
    <content>
<p>
In the 0.9.x development series, gst-plugins has been split up in four
separate modules.  <A href="&site;/documentation/splitup.html">Read why</A>.
</p>
    </content>
  </item>

  <item>
    <date>2005-09-06 16:10</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>
<p>
The GStreamer team is petrified to announce new releases of GStreamer
modules in the 0.9.x development release series.
5 modules have been released: GStreamer 0.9.2, GStreamer Base Plug-ins 0.9.2,
GStreamer Good Plug-ins 0.9.1, GStreamer Ugly Plug-ins 0.9.1, and
GStreamer Bad Plug-ins 0.9.1.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.2.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.2.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.1.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.1.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.1.html">gst-plugins-bad</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.2.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.2.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.1.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.1.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.1.tar.bz2">gst-plugins-bad</a>.
</p>
    </content>
  </item>

  <item>
    <date>2005-10-03 20:05</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>

<p>
The GStreamer team is petrified to announce new releases of GStreamer
modules in the 0.9.x development release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
All of these have version 0.9.3; this makes it easier for people to follow
API changes through our development cycle.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.3.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.3.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.3.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.3.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.3.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.9.3.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.9.3.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.3.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.3.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.3.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.3.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.3.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.9.3.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.9.3.tar.bz2">gst-python</a>,
</p>
    </content>
  </item>

  <item>
    <date>2005-10-24 01:09</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>

<p>
The GStreamer team is petrified to announce new releases of GStreamer
modules in the 0.9.x development release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
All of these have version 0.9.4; this makes it easier for people to follow
API changes through our development cycle.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.4.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.4.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.4.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.4.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.4.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.9.4.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.9.4.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.4.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.4.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.4.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.4.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.4.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.9.4.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.9.4.tar.bz2">gst-python</a>,
</p>
    </content>
  </item>

  <item>
    <date>2005-10-25 12:00</date>
    <title>GStreamer FFMpeg 0.8.7 "Redneck soup"</title>
    <content>
<p>
The GStreamer team is proud to announce a new release of the GStreamer
FFMpeg plugins for the 0.8.x stable release series.
</p>
<p>
Check out <a href="&site;/releases/gst-ffmpeg/0.8.7.html">release page</a>
for details.
</p>
    </content>
  </item>

  <item>
    <date>2005-11-11 20:41</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>

<p>
The GStreamer team is petrified to announce new releases of GStreamer
modules in the 0.9.x development release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
All of these have version 0.9.5; this makes it easier for people to follow
API changes through our development cycle.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.5.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.5.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.5.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.5.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.5.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.9.5.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.9.5.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.5.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.5.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.5.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.5.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.5.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.9.5.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.9.5.tar.bz2">gst-python</a>,
</p>
    </content>
  </item>

  <item>
    <date>2005-11-23 20:50</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>

<p>
The GStreamer team is petrified to announce new releases of GStreamer
modules in the 0.9.x development release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
All of these have version 0.9.6; this makes it easier for people to follow
API changes through our development cycle.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.6.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.6.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.6.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.6.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.6.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.9.6.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.9.6.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.6.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.6.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.6.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.6.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.6.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.9.6.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.9.6.tar.bz2">gst-python</a>,
</p>
    </content>
  </item>

  <item>
    <date>2005-12-01 20:14</date>
    <title>GStreamer 0.9 development series releases</title>
    <content>

<p>
The GStreamer team is proud to announce new releases of GStreamer
modules in the 0.9.x development release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
<b>
This is a pre-release for the new 0.10 stable series.  It has a major/minor
of 0.10 and all library versioning reset.
</b>
</p>

<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.9.7.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.9.7.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.9.7.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.9.7.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.9.7.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.9.7.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.9.7.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.9.7.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.9.7.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.9.7.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.9.7.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.9.7.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.9.7.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.9.7.tar.bz2">gst-python</a>,
</p>
    </content>
  </item>

  <item>
    <date>2005-12-05 18:59</date>
    <title>GStreamer 0.10.0 stable release</title>
    <content>

<p>
The GStreamer team is proud to announce the first release of the new GStreamer
stable release series.
7 modules have been released: GStreamer, GStreamer Base Plug-ins,
GStreamer Good Plug-ins, GStreamer Ugly Plug-ins, 
GStreamer Bad Plug-ins, GStreamer FFmpeg Plug-ins, and
GStreamer Python Bindings.
</p>

<p>
<b>
This release comes close to 18 months after the 0.8.0 release.  It's been
a fun ride and we thank you all.  Hop on board for the next leg.
</b>
</p>

<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.0.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.0.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.10.0.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.10.0.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.10.0.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-ffmpeg/0.10.0.html">gst-ffmpeg</a>,
<a href="&site;/releases/gst-python/0.10.0.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.0.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.0.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.0.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.0.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.0.tar.bz2">gst-plugins-bad</a>,
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.0.tar.bz2">gst-ffmpeg</a>,
<a href="&site;/src/gst-python/gst-python-0.10.0.tar.bz2">gst-python</a>
</p>
<p>
We also have a special <a href="http://gstreamer.freedesktop.org/documentation/gstreamer010.html">release announcement for GStreamer 0.10</a>. Check it out! 
</p>
    </content>
  </item>

   <item>
    <date>2005-12-20 13:30</date>
    <title>GStreamer Monkey's Audio 0.8.2 release</title>
    <content>
<p>
We just released an updated Monkey's Audio plugin, updating it to work
with latest version of the Monkey's Audio format using the mac-port library.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-monkeysaudio/0.8.2.html">gst-monkeysaudio</a>
</p>
    </content>
  </item>

  <item>
    <date>2005-12-23 19:17</date>
    <title>GStreamer Core, Base and Python 0.10.1 stable release</title>
    <content>

<p>
The GStreamer team is proud to announce a new release in the new GStreamer
stable release series.
3 modules have been released: GStreamer, GStreamer Base Plug-ins,
and GStreamer Python Bindings.
</p>

<p>
We'd also like you to wish you a happy Christmas !
</p>

<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.1.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.1.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-python/0.10.1.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.1.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.1.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-python/gst-python-0.10.1.tar.bz2">gst-python</a>
</p>
    </content>
  </item>

  <item>
    <date>2006-01-13 20:17</date>
    <title>GStreamer Plugins Good and Ugly  0.10.1 stable release</title>
    <content>

<p>
The GStreamer team is proud to announce a new release in the new GStreamer
stable release series.
2 modules have been released: GStreamer Good Plug-ins,
and GStreamer Ugly Plug-ins.
</p>

<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.1.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-ugly/0.10.1.html">gst-plugins-ugly</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.1.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.1.tar.bz2">gst-plugins-ugly</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-01-14 14:47</date>
    <title>GStreamer Python 0.8.3 'Nadolig LLawen'</title>
    <content>
<p>
A new better, strong, faster, cuter and in general more fantastic release of
the GStreamer python bindings are out. Get it while its hot and juicy.
</p>
<p>
Check out
<a href="&site;/releases/gst-python/0.8.3.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.8.3.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.8.3.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2006-01-16 21:57</date>
    <title>GStreamer Core, Base and Python 0.10.2 stable release</title>
    <content>

<p>
The GStreamer team is proud to announce a new release in the new GStreamer
stable release series.
3 modules have been released: GStreamer, GStreamer Base Plug-ins,
and GStreamer Python Bindings.
</p>

<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.2.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.2.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-python/0.10.2.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.2.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.2.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-python/gst-python-0.10.2.tar.bz2">gst-python</a>
</p>
    </content>
  </item>
 
  <item>
    <date>2006-01-25 11:37</date>
    <title>GStreamer article on Newsforge</title>
    <content>

<p>
Newsforge have an article <a href="http://programming.newsforge.com/programming/06/01/02/216204.shtml?tid=140&amp;tid=75">discussing GStreamer 0.10 and some of 
the efforts undertaken around it</a>. The article is not 100% exact, but all PR is good PR :)
</p>
    </content>
  </item>

  <item>
    <date>2006-02-08 20:00</date>
    <title>GStreamer Core 0.10.3 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Core release in the new GStreamer
stable release series.
</p>
<p>
Check out release notes 
<a href="&site;/releases/gstreamer/0.10.3.html">here</a>,
or download tarballs 
<a href="&site;/src/gstreamer/gstreamer-0.10.3.tar.bz2">here</a>,
</p>
    </content>
  </item>
  <item>
    <date>2006-02-09 12:30</date>
    <title>GStreamer Base and Good stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 
GStreamer stable release series. 2 modules have been released: GStreamer Base Plug-ins and GStreamer Good Plug-ins.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-base/0.10.3.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-good/0.10.2.html">gst-plugins-good</a>
or download tarballs 
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.3.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-good-0.10.2.tar.bz2">gst-plugins-good</a>
</p>
    </content>
  </item>

  <item>
    <date>2006-02-09 17:30</date>
    <title>GStreamer Core 0.8.12 "Cookies" and Plugins 0.8.12 "Ravage" released</title>
    <content>
<p>
The GStreamer team is proud to announce a new stable release of GStreamer
Core and Plugins in the 0.8.x stable release series.
</p>
<p>
Check out the
<a href="&site;/releases/gstreamer/0.8.12.html">core release page</a> and the
<a href="&site;/releases/gst-plugins/0.8.12.html">plugins release page</a>
for details, or download the core
<a href="&site;/src/gstreamer/gstreamer-0.8.12.tar.gz">tar.gz</a> /
<a href="&site;/src/gstreamer/gstreamer-0.8.12.tar.bz2">tar.bz2</a>
or the plugins
<a href="&site;/src/gst-plugins/gst-plugins-0.8.12.tar.gz">tar.gz</a> /
<a href="&site;/src/gst-plugins/gst-plugins-0.8.12.tar.bz2">tar.bz2</a>
archives.</p>
    </content>
  </item>

  <item>
    <date>2006-02-20 12:00</date>
    <title>GStreamer Ugly and Bad stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 
GStreamer stable release series. 2 modules have been released: GStreamer Ugly Plug-ins and GStreamer Bad Plug-ins.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-ugly/0.10.2.html">gst-plugins-ugly</a>,
<a href="&site;/releases/gst-plugins-bad/0.10.1.html">gst-plugins-bad</a>
or download tarballs 
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.2.tar.bz2">gst-plugins-ugly</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.1.tar.bz2">gst-plugins-bad</a>
</p>
    </content>
  </item>

  <item>
    <date>2006-03-08 11:50</date>
    <title>GStreamer Python 0.8.4 '64 bits is enough for anyone'</title>
    <content>
<p>
This release fixes installation on 64-bit systems.
</p>
<p>
Check out
<a href="&site;/releases/gst-python/0.8.4.html">release notes</a>
or download the
<a href="&site;/src/gst-python/gst-python-0.8.4.tar.gz">tar.gz</a> or
<a href="&site;/src/gst-python/gst-python-0.8.4.tar.bz2">tar.bz2</a> archive.
</p>
    </content>
  </item>

  <item>
    <date>2006-03-10 20:16</date>
    <title>GStreamer Core and Base Plugins 0.10.4 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Core and Base Plugins 
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes  for
<a href="&site;/releases/gstreamer/0.10.4.html">gstreamer</a> or
<a href="&site;/releases/gst-plugins-base/0.10.4.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.4.tar.bz2">gstreamer</a> or
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.4.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-03-13 20:57</date>
    <title>GStreamer Base Plugins 0.10.5 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Base Plugins 
release in the new GStreamer stable release series.
This release is a quick fix release that addresses seekable playback
of "local" files on NFS shares.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-base/0.10.5.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.5.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-03-21 23:20</date>
    <title>GStreamer Python Bindings 0.10.3 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
This release contains API additions, bug fixes and better compatibility with older GStreamer releases..
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.3.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.3.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-03-31 13:19</date>
    <title>GStreamer Ugly Plugins 0.10.3 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Ugly Plugins 
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-ugly/0.10.3.html">gst-plugins-ugly</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.3.tar.bz2">gst-plugins-ugly</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-03-31 13:20</date>
    <title>GStreamer FFmpeg 0.10.1 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new FFmpeg
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-ffmpeg/0.10.1.html">gst-ffmpeg</a>,
or download tarballs for
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.1.tar.bz2">gst-ffmpeg</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-04-06 20:19</date>
    <title>GNonLin 0.10.1 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new GNonLin
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.1.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.1.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-04-28 13:02</date>
    <title>GStreamer 0.10.5 and Base Plugins 0.10.6 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Core and Base Plugins 
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.5.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.6.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.5.tar.bz2">gstreamer</a> or
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.6.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-04-28 15:40</date>
    <title>GStreamer Python Bindings 0.10.4 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.4.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.4.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-05-04 17:44</date>
    <title>GStreamer Good and Bad Plugins 0.10.3 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce new releases of the Good and Bad
plugins collections in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes  for
<a href="&site;/releases/gst-plugins-good/0.10.3.html">gst-plugins-good</a> or
<a href="&site;/releases/gst-plugins-bad/0.10.3.html">gst-plugins-bad</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.3.tar.bz2">gst-plugins-good</a> or
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.3.tar.bz2">gst-plugins-bad</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-05-11 14:13</date>
    <title>GNonLin 0.10.4 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.4.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.4.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-05-14 17:30</date>
    <title>GStreamer 0.10.6 and Base Plugins 0.10.7 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Core and Base Plugins 
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.6.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.7.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.6.tar.bz2">gstreamer</a> or
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.7.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-06-09 20:49</date>
    <title>GStreamer 0.10.7 and Base Plugins 0.10.8 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Core and Base Plugins 
release in the new GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.7.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.8.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.7.tar.bz2">gstreamer</a> or
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.8.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-06-10 19:03</date>
    <title>GStreamer 0.10.8 stable release</title>
    <content>
<p>
The GStreamer team is embarassed to announce a new Core
release in the new GStreamer stable release series.
</p>
<p>
This release fixes a bug when updating the registry causing some programs
(like the GNOME mixer applet) to exit prematurely.
We recommend no one use or ship GStreamer 0.10.7, but move to this version
instead.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.8.html">gstreamer</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.8.tar.bz2">gstreamer</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-07-14 17:55</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.9 stable releases</title>
    <content>
<p>
The GStreamer team is embarassingly proud to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.9.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.9.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.9.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.9.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-07-20 18:28</date>
    <title>GNonLin 0.10.5 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.5.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.5.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-07-20 19:07</date>
    <title>GStreamer Python Bindings 0.10.5 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.5.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.5.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-08-14 13:11</date>
    <title>GStreamer Good and Ugly Plugins 0.10.4 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce new releases of the Good and Ugly
plugins collections in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes  for
<a href="&site;/releases/gst-plugins-good/0.10.4.html">gst-plugins-good</a> or
<a href="&site;/releases/gst-plugins-ugly/0.10.4.html">gst-plugins-ugly</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.4.tar.bz2">gst-plugins-good</a> or
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.4.tar.bz2">gst-plugins-ugly</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-09-14 21:15</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.10 stable releases</title>
    <content>
<p>
The GStreamer team is embarassingly proud to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.10.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.10.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.10.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.10.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-11-27 21:14</date>
    <title>GNonLin 0.10.6 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.6.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.6.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-12-04 19:00</date>
    <title>GStreamer Python Bindings 0.10.6 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.6.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.6.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-12-06 21:15</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.11 stable releases</title>
    <content>
<p>
The GStreamer team is ecstatic to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.11.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.11.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.11.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.11.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2006-12-13 21:56</date>
    <title>GStreamer "Ugly" Plugins 0.10.5 and GStreamer FFmpeg Plugins 0.10.2 stable releases</title>
    <content>
<p>
The GStreamer team is excessively happy to announce new "Ugly" and FFmpeg 
Plugins releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-ugly/0.10.5.html">gst-plugins-ugly</a> and
<a href="&site;/releases/gst-ffmpeg/0.10.2.html">gst-ffmpeg</a>, 
or download tarballs for
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.5.tar.bz2">gst-plugins-ugly</a> and
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.2.tar.bz2">gst-ffmpeg</a>.
</p>
    </content>
  </item>
  <item>
    <date>2006-12-21 17:00</date>
    <title>GStreamer "Good" Plugins 0.10.5 and GStreamer "Bad" Plugins 0.10.4 stable releases</title>
    <content>
<p>
The GStreamer team is fairly pleased to announce new "Good" and "Bad" Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.5.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-bad/0.10.4.html">gst-plugins-bad</a>,
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.5.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.4.tar.bz2">gst-plugins-bad</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-01-26 18:12</date>
    <title>GNonLin 0.10.7 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.7.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.7.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-01-31 18:00</date>
    <title>GStreamer Python Bindings 0.10.7 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.7.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.7.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-03-07 19:00</date> 
    <title>GStreamer and GStreamer Base Plugins 0.10.12 stable releases</title>
    <content>
<p> 
The GStreamer team is relieved to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.12.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.12.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.12.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.12.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-05-26 14:10</date>
    <title>GNonLin 0.10.8 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.8.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.8.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-06-05 15:00</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.13 stable releases</title>
    <content>
<p>
The GStreamer team is proud to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.13.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.13.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.13.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.13.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-06-19 12:30</date>
    <title>GStreamer Good (0.10.6), Bad (0.10.5) &amp; Ugly (0.10.6) Plugins stable releases</title>
    <content>
<p>
The GStreamer team is proud to announce new releases of the Good, Bad &amp; Ugly plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.6.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-bad/0.10.5.html">gst-plugins-bad</a> and
<a href="&site;/releases/gst-plugins-ugly/0.10.6.html">gst-plugins-ugly</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.6.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.5.tar.bz2">gst-plugins-bad</a> and
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.6.tar.bz2">gst-plugins-ugly</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-08-01 19:20</date>
    <title>GStreamer Python Bindings 0.10.8 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.8.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.8.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>
  <item>
    <date>2007-08-03 17:00</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.14 stable releases</title>
    <content>
<p>
The GStreamer team is pleased to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.14.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.14.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.14.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.14.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-08-09 15:10</date>
    <title>GNonLin 0.10.9 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.9.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.9.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-11-14 23:59</date>
    <title>GStreamer and GStreamer Base Plugins 0.10.15 stable releases</title>
    <content>
<p>
The GStreamer team is pleased to announce new Core and Base Plugins
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.15.html">gstreamer</a> and
<a href="&site;/releases/gst-plugins-base/0.10.15.html">gst-plugins-base</a>,
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.15.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.15.tar.bz2">gst-plugins-base</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-11-28 11:00</date>
    <title>GStreamer Python Bindings 0.10.9 stable release</title>
    <content>
<p>
The GStreamer team is proud to announce a new Python Bindings
release in the GStreamer 0.10 stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-python/0.10.9.html">gst-python</a>,
or download tarballs for
<a href="&site;/src/gst-python/gst-python-0.10.9.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

  <item>
    <date>2007-12-04 22:00</date>
    <title>GStreamer FFmpeg Plugins 0.10.3 stable releases</title>
    <content>
<p>
The GStreamer team is proud to announce a new FFmpeg Plugins 
releases in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-ffmpeg/0.10.3.html">gst-ffmpeg</a>, 
or download tarballs for
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.3.tar.bz2">gst-ffmpeg</a>.
</p>
    </content>
  </item>

<item>
    <date>2008-01-28 23:59</date>
    <title>GStreamer Core 0.10.16 Base 0.10.16 and Python Bindings 0.10.10 stable releases</title>
<content>
<p>
The GStreamer team is proud to announce new releases of GStreamer Core, GStreamer Base Plugins and GStreamer Python Bindings in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.16.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.16.html">gst-plugins-base</a> and
<a href="&site;/releases/gst-python/0.10.10.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.16.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.16.tar.bz2">gst-plugins-base</a> and
<a href="&site;/src/gst-python/gst-python-0.10.10.tar.bz2">gst-python</a>.
</p>
    </content>
  </item>

<item>
    <date>2008-01-30 14:30</date>
<title>GStreamer Core 0.10.17 Base 0.10.17 stable releases</title>
<content>
<p>
The GStreamer team is surprised to announce new releases of GStreamer Core and GStreamer Base Plugins in the 0.10 GStreamer stable release series.
</p>
<p>
These unscheduled releases replace the ill-fated 0.10.16 versions of Core &amp; Base. See the release notes for details, but the important point is that everyone should pretend 0.10.16 didn't happen.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.17.html">gstreamer</a> and 
<a href="&site;/releases/gst-plugins-base/0.10.17.html">gst-plugins-base</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.17.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.17.tar.bz2">gst-plugins-base</a>
</p>
    </content>
  </item>

<item>
    <date>2008-02-20 00:00</date>
<title>GStreamer Good 0.10.7, Bad 0.10.6 &amp; Ugly 0.10.7 stable releases</title>
<content>
<p>
The GStreamer team is thrilled to announce new releases of the Good, Bad and Ugly Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.7.html">gst-plugins-good</a>,
<a href="&site;/releases/gst-plugins-bad/0.10.6.html">gst-plugins-bad</a> and
<a href="&site;/releases/gst-plugins-ugly/0.10.7.html">gst-plugins-ugly</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.7.tar.bz2">gst-plugins-good</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.6.tar.bz2">gst-plugins-bad</a> and
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.7.tar.bz2">gst-plugins-ugly</a>
</p>
    </content>
  </item>

<item>
    <date>2008-03-21 21:00</date>
<title>GStreamer Core 0.10.18 Base 0.10.18 Python 0.10.11 stable releases</title>
<content>
<p>
The GStreamer team is happy to provide new releases of GStreamer Core, GStreamer Base Plugins and GStreamer Python Bindings in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.18.html">gstreamer</a>, 
<a href="&site;/releases/gst-plugins-base/0.10.18.html">gst-plugins-base</a> and
<a href="&site;/releases/gst-python/0.10.11.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.18.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.18.tar.bz2">gst-plugins-base</a> and
<a href="&site;/src/gst-python/gst-python-0.10.11.tar.bz2">gst-python</a>
</p>
    </content>
  </item>

<item>
    <date>2008-04-04 03:00</date>
<title>GStreamer Core 0.10.19 Base 0.10.19 stable releases</title>
<content>
<p>
The GStreamer team is happy to provide new releases of GStreamer Core, GStreamer Base Plugins in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.19.html">gstreamer</a> and 
<a href="&site;/releases/gst-plugins-base/0.10.19.html">gst-plugins-base</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.19.tar.bz2">gstreamer</a> and
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.19.tar.bz2">gst-plugins-base</a>
</p>
    </content>
  </item>
<item>
    <date>2008-04-24 02:00</date>
<title>GStreamer Good 0.10.8 &amp; Bad 0.10.7 stable releases</title>
<content>
<p>
The GStreamer team is thrilled to announce new releases of the Good and Bad Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.8.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-bad/0.10.7.html">gst-plugins-bad</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.8.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.7.tar.bz2">gst-plugins-bad</a>
</p>
    </content>
  </item>

<item>
    <date>2008-05-22 00:00</date>
<title>GStreamer Ugly 0.10.8 &amp; FFmpeg 0.10.4 stable releases</title>
<content>
<p>
The GStreamer team is pleased to present new releases of the Ugly and FFmpeg Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-ugly/0.10.8.html">gst-plugins-ugly</a> and
<a href="&site;/releases/gst-ffmpeg/0.10.4.html">gst-ffmpeg</a>
or download tarballs for
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.8.tar.bz2">gst-plugins-ugly</a> and
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.4.tar.bz2">gst-ffmpeg</a>
</p>
    </content>
  </item>

<item>
    <date>2008-06-18 16:00</date>
<title>GStreamer Core 0.10.20 Base 0.10.20 Python 0.10.12 stable releases</title>
<content>
<p>
The GStreamer team is happy to provide new releases of GStreamer Core, GStreamer Base Plugins and GStreamer Python Bindings in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.20.html">gstreamer</a>, 
<a href="&site;/releases/gst-plugins-base/0.10.20.html">gst-plugins-base</a> and
<a href="&site;/releases/gst-python/0.10.12.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.20.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.20.tar.bz2">gst-plugins-base</a> and
<a href="&site;/src/gst-python/gst-python-0.10.12.tar.bz2">gst-python</a>
</p>
    </content>
  </item>
<item>
    <date>2008-07-31 23:00</date>
<title>GStreamer Good 0.10.9 &amp; Bad 0.10.8 stable releases</title>
<content>
<p>
The GStreamer team is thrilled to announce new releases of the Good and Bad Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.9.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-bad/0.10.8.html">gst-plugins-bad</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.9.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.8.tar.bz2">gst-plugins-bad</a>
</p>
    </content>
  </item>
<item>
    <date>2008-08-26 23:59</date>
<title>GStreamer Good 0.10.10 &amp; Ugly 0.10.9 stable releases</title>
<content>
<p>
The GStreamer team is thrilled to announce new releases of the Good and Ugly Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.10.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-ugly/0.10.9.html">gst-plugins-ugly</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.10.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.9.tar.bz2">gst-plugins-ugly</a>
</p>
    </content>
  </item>

<item>
    <date>2008-09-03 017:00</date>
<title>GStreamer FFmpeg 0.10.5 stable releases</title>
<content>
<p>
The GStreamer team is pleased to present a new releases of the FFmpeg Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-ffmpeg/0.10.5.html">gst-ffmpeg</a>
or download tarballs for
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.5.tar.bz2">gst-ffmpeg</a>
</p>
    </content>
  </item>

<item>
    <date>2008-10-02 00:00</date>
<title>GStreamer Core 0.10.21 Base 0.10.21 Python 0.10.13 stable releases</title>
<content>
<p>
The GStreamer team is happy to provide new releases of GStreamer Core, GStreamer Base Plugins and GStreamer Python Bindings in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.21.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.21.html">gst-plugins-base</a> and
<a href="&site;/releases/gst-python/0.10.13.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.21.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.21.tar.bz2">gst-plugins-base</a> and
<a href="&site;/src/gst-python/gst-python-0.10.13.tar.bz2">gst-python</a>
</p>
    </content>
  </item>
<item>
    <date>2008-10-24 23:00</date>
<title>GStreamer Good 0.10.11 &amp; Bad 0.10.9 stable releases</title>
<content>
<p>
The GStreamer team is thrilled to announce new releases of the Good and Bad Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.11.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-bad/0.10.9.html">gst-plugins-bad</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.11.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.9.tar.bz2">gst-plugins-bad</a>
</p>
    </content>
  </item>

  <item>
    <date>2008-11-03 17:10</date>
    <title>GNonLin 0.10.10 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.10.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.10.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>
<item>
    <date>2008-11-19 15:00</date>
<title>GStreamer Ugly 0.10.10 stable release</title>
<content>
<p>
The GStreamer team is happy to announce a new release of the Ugly Plugins module in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-ugly/0.10.10.html">gst-plugins-ugly</a>
or download the tarball at
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.10.tar.bz2">gst-plugins-ugly</a>
</p>
    </content>
  </item>
<item>
    <date>2008-11-28 23:30</date>
    <title>GStreamer FFmpeg 0.10.6 stable release</title>
    <content>
    <p>
    The GStreamer team is pleased to announce a new release of the FFmpeg Plugins module in the 0.10 GStreamer stable release series.
    </p>
    <p>
    Check out the release notes
    <a href="&site;/releases/gst-ffmpeg/0.10.6.html">here</a>, or download the tarball 
    <a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.6.tar.bz2">here</a>.
    </p>
    </content>
</item>
<item>
    <date>2009-01-19 23:00</date>
<title>GStreamer Core 0.10.22, Base Plugins 0.10.22, Bad Plugins 0.10.10 and Python Bindings 0.10.14 stable release</title>
<content>
<p>
The GStreamer team is happy to announce the first releases of 2009 with new versions of Core, the Base Plugins module, the Bad Plugins module and the Python Bindings for the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.22.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.22.html">gst-plugins-base</a>,
<a href="&site;/releases/gst-plugins-bad/0.10.10.html">gst-plugins-bad</a> and
<a href="&site;/releases/gst-python/0.10.14.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.22.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.22.tar.bz2">gst-plugins-base</a>,
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.10.tar.bz2">gst-plugins-bad</a> and
<a href="&site;/src/gst-python/gst-python-0.10.14.tar.bz2">gst-python</a>
    </p>
    </content>
</item>

<item>
    <date>2009-01-22 14:00</date>
<title>GStreamer Good 0.10.12 stable release</title>
<content>
<p>
The GStreamer team presents a new release of the Good Plugins module in the 0.10 GStreamer stable release series.
This release provides a fix for security advisory TKADV2009-0xx.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.12.html">gst-plugins-good</a>
or download a tarball at
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.12.tar.bz2">gst-plugins-good</a>
</p>
    </content>
  </item>

<item>
    <date>2009-01-22 22:30</date>
<title>GStreamer Good 0.10.13 stable release</title>
<content>
<p>
Hot on the heels of 0.10.12, the GStreamer team presents a new release of the Good Plugins module in the 0.10 GStreamer stable release series.
This release contains a fix for a gettext bug that prevented 0.10.12 from building translations correctly.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.13.html">gst-plugins-good</a>
or download a tarball at
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.13.tar.bz2">gst-plugins-good</a>
</p>
    </content>
  </item>

<item>
    <date>2009-02-19 20:30</date>
<title>GStreamer Good 0.10.14 stable release</title>
<content>
<p>
The GStreamer team presents a new release of the Good Plugins module in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.14.html">gst-plugins-good</a>
or download a tarball at
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.14.tar.bz2">gst-plugins-good</a>
</p>
    </content>
  </item>

<item>
    <date>2009-03-20 00:00</date>
<title>GStreamer Bad 0.10.11, Ugly 0.10.11 &amp; FFmpeg 0.10.7 stable releases</title>
<content>
<p>
The GStreamer team is pleased to present new releases of the Bad, Ugly and FFmpeg Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-bad/0.10.11.html">gst-plugins-bad</a>,
<a href="&site;/releases/gst-plugins-ugly/0.10.11.html">gst-plugins-ugly</a> and
<a href="&site;/releases/gst-ffmpeg/0.10.7.html">gst-ffmpeg</a>
or download tarballs for
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.11.tar.bz2">gst-plugins-bad</a> and
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.11.tar.bz2">gst-plugins-ugly</a> and
<a href="&site;/src/gst-ffmpeg/gst-ffmpeg-0.10.7.tar.bz2">gst-ffmpeg</a>
</p>
    </content>
  </item>
<item>
    <date>2009-05-10 0:00</date>
<title>GStreamer Core 0.10.23, Base Plugins 0.10.23 and Python Bindings 0.10.15 stable release</title>
<content>
<p>
The GStreamer team is relieved to announce new releases of Core, the Base Plugins module and the Python Bindings for the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gstreamer/0.10.23.html">gstreamer</a>,
<a href="&site;/releases/gst-plugins-base/0.10.23.html">gst-plugins-base</a> and
<a href="&site;/releases/gst-python/0.10.15.html">gst-python</a>
or download tarballs for
<a href="&site;/src/gstreamer/gstreamer-0.10.23.tar.bz2">gstreamer</a>,
<a href="&site;/src/gst-plugins-base/gst-plugins-base-0.10.23.tar.bz2">gst-plugins-base</a> and
<a href="&site;/src/gst-python/gst-python-0.10.15.tar.bz2">gst-python</a>
    </p>
    </content>
</item>
<item>
    <date>2009-05-20 23:00</date>
<title>GStreamer Good 0.10.15 &amp; Bad 0.10.12 stable releases</title>
<content>
<p>
The GStreamer team is pleased to announce new releases of the Good and Bad Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-good/0.10.15.html">gst-plugins-good</a> and
<a href="&site;/releases/gst-plugins-bad/0.10.12.html">gst-plugins-bad</a>
or download tarballs for
<a href="&site;/src/gst-plugins-good/gst-plugins-good-0.10.15.tar.bz2">gst-plugins-good</a> and
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.12.tar.bz2">gst-plugins-bad</a>
</p>
    </content>
  </item>

  <item>
    <date>2009-05-24 11:18</date>
    <title>GNonLin 0.10.11 release</title>
    <content>
<p>
The GStreamer team is proud to announce a new release in the 0.10.x stable
series of GNonLin.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gnonlin/0.10.11.html">gnonlin</a>,
or download tarballs for
<a href="&site;/src/gnonlin/gnonlin-0.10.11.tar.bz2">gnonlin</a>.
</p>
    </content>
  </item>
<item>
    <date>2009-06-18 00:00</date>
<title>GStreamer Bad 0.10.13 &amp; Ugly 0.10.12 stable releases</title>
<content>
<p>
The GStreamer team is pleased to present new releases of the Bad and Ugly Plugins modules in the 0.10 GStreamer stable release series.
</p>
<p>
Check out release notes for
<a href="&site;/releases/gst-plugins-bad/0.10.13.html">gst-plugins-bad</a> and
<a href="&site;/releases/gst-plugins-ugly/0.10.12.html">gst-plugins-ugly</a>
or download tarballs for
<a href="&site;/src/gst-plugins-bad/gst-plugins-bad-0.10.13.tar.bz2">gst-plugins-bad</a> and
<a href="&site;/src/gst-plugins-ugly/gst-plugins-ugly-0.10.12.tar.bz2">gst-plugins-ugly</a>
</p>
    </content>
  </item>
</news>