
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (11)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (3608)
-
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 -
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
-
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.