
Recherche avancée
Autres articles (67)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (7723)
-
rtsp server using ffmpeg c code
24 juin 2018, par PFMelamedI am using ffmpeg lib :
ffmpeg version git-2017-09-16-08ec828
Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609
configuration: --enable-pic --enable-shared --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-postproc --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree
libavutil 55. 75.100 / 55. 75.100
libavcodec 57.106.101 / 57.106.101
libavformat 57. 82.100 / 57. 82.100
libavdevice 57. 8.101 / 57. 8.101
libavfilter 6.105.100 / 6.105.100
libswscale 4. 7.103 / 4. 7.103
libswresample 2. 8.100 / 2. 8.100
libpostproc 54. 6.100 / 54. 6.100Hyper fast Audio and Video encoder
I am trying to write an
RTSP
server using the above version offfmpeg
libs. I have tried a large variety of approachess with no success. Has anyone already written such code with thisffmpeg
version or does anyone know of such code ? Or, do I need to change versions ? Any suggestions or answers are welcome. -
How can I use ffmpeg x11 capture in C++ code
12 juin 2015, par Özüm SafaoğluI want to grab x11 desktop in linux using ffmpeg, hoping it would give a fast output. However, I would like to do it within C++ code. I suppose it is possible to output it to stdout in the command line with
ffmpeg
command, however if possible i would prefer reading from memory buffer directly. Is there a way I can do this ? -
What is wrong with this code ? Not working on Windows 10 / Ubuntu 14
3 avril 2017, par SomenameTrying to convert a
.gif
to.mp4
:var express = require('express');
var bodyParser = require('body-parser');
var app = express();
var ffmpeg = require('fluent-ffmpeg');
var proc = new ffmpeg({ source: 'myfile.gif' })
.withAspect('4:3')
.withSize('640x480')
.applyAutopadding(true, 'white')
.saveToFile('myfile.avi', function(stdout, stderr) {
console.log('file has been converted succesfully');
});
app.listen(3000, function() {
console.log("Server Running on 3000");
});Getting the same error on Windows 10 and Ubuntu 14 :
Error: Cannot find ffmpeg
.What is wrong with the code ? Please help.