
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (81)
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4845)
-
PHP variable into FFMPEG
14 juillet 2015, par kunali am making web tool which should be able to search the file within the Archive and then get the duration of the video with FFMPEG Code.
for search the file in the Archive , here is my code !
$command ='find /mnt/archiev/ -name '.$_POST['MXF'].'.mxf';
if (!($stream = ssh2_exec($con, $command))) {
echo "fail: unable to execute command\n";
} else {
$errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR);
$FILE = stream_get_contents($stream);
/ check if file exist or not and then run the Next command.
if(!($FILE))
{
echo "file Doesnt Exist in the Archieve. please enter the correct file ID";
ssh2_exec($con, "logout");
exit;
}
elseif
{
$commandA= ffmpeg -i '.$FILE.' 2>&1 | grep "Duration:"';
(!($stream2 = ssh2_exec($con, $command))) {
echo "fail: unable to execute command\n";
} else {
$errorStream2 = ssh2_fetch_stream($stream2, SSH2_STREAM_STDERR);
$Duration = stream_get_contents($stream);
var_dump($duration);
}
}My problem is this code returns me NUll value , but it supposed to return me the Duration of video !
Here $FILE has the file Path , where searched File exist but when i use this with ffmpeg code it returns
null
does anyone have idea how can i make it work, i need to be able to find the files within the archiev and then with
stream_get_contens()
funcation i get the path of the video and this path i need to use within the FFMPEG as a input but it doesnt work and return theNULL
.which suppossed to retrun the video Duration.
please help !!!
thanks in adavance.
-
Revision 1220b49c89 : arm : Fix building vp8_mse16x16_neon.c with MSVC Use the right return values - v
16 septembre 2014, par Scott LaVarnwayChanged Paths :
Modify /vp8/encoder/arm/neon/vp8_mse16x16_neon.c
arm : Fix building vp8_mse16x16_neon.c with MSVCUse the right return values - vadd_s64 returns int64x1_t, not
a normal int64_t.Change-Id : Ife17213087c1dfb5faaa647f804d2fd140f3a0eb
-
Ubuntu ffmpeg command -i not found
12 avril 2016, par GerwinI’m a beginner with Ubuntu and I need to setup a streaming server for my company, I’ve installed NGINX and FFMPEG, but when I call
ffmpeg -i
in the~/ffmpeg/ffmpeg
directory it returns an errorcommand not found
but when I call./ffmpeg -i
it returns a list with configurations.. why doesffmpeg -i
not work and how can I fix it ?I think that the
Path Enviroment Variable is incorrect
but how would I go abouts changing said variable ? I’m not that experienced with Ubuntu / CMD programming / FFMPEG configuration.Sources - https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
https://github.com/arut/nginx-rtmp-module/wiki/Control-module
and http://docs.unified-streaming.com/tutorials/live/broadcast-247.html#continuous-timestamps