
Recherche avancée
Autres articles (97)
-
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
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 (...) -
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 (7231)
-
how can I link FFmpeg and OpenCV by building from source code in my c++ project ? [closed]
27 juin 2020, par abid ahsanI've gone through so many Cmake and Other tutorials to link libraries correctly but things are really convoluted and I can't find the best to get on with my work. I want to start a c++ project using FFmpeg and OpenCV and I want a link library using only Cmake without any package manager. I want to keep these 3rd party libraries in my project directory so that, I can clone my repo from Github and build easily without any dependency. What is the best way to do link 3rd party libraries...


(sorry for my bad usage of English. I really need help)


-
configure : Silence lld-link when getting the version number
3 novembre 2016, par Martin Storsjöconfigure : Silence lld-link when getting the version number
In recent lld-link versions, this command prints the version to
stdout, but also prints an error to stderr :$ lld-link -flavor gnu —version
LLD 4.0.0 (trunk 285641)
lld-link : error : no input files
lld-link : error : target emulation unknown : -m or at least one .o file requiredSigned-off-by : Martin Storsjö <martin@martin.st>
-
Process not taking arguments
11 septembre 2018, par Wahid MasudI am trying to run ffmpeg.exe as a process and give it some arguments. The process actually runs I can see the ffmpeg window opens but then nothing happens. I also tried using
@ffmpeg
in the args but no luck. So I guess the arguments are not passing to it. I have manually run the ffmpeg.exe from cmd and used those args and it worked perfectly. Here is the code,public void ConvertVideo()
{
var dir = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName + "\\FFMpeg";
var ffmpeg = dir + "\\ffmpeg.exe";
var args = "ffmpeg -i 20180906194502.mp4 -ar 44100 -ac 2 -c:a aac -strict -2 -b:a 128k -c:v libx264 -preset veryslow -crf 20 output.mp4";
var process = new Process();
process.StartInfo.UseShellExecute = false;
process.StartInfo.FileName = ffmpeg;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.StartInfo.WorkingDirectory = dir;
process.EnableRaisingEvents = true;
process.StartInfo.RedirectStandardInput = true;
process.Start();
process.StandardInput.WriteLine(args);
process.StandardInput.Flush();
process.StandardInput.Close();
process.WaitForExit();
}So bottom line is, if I run this code I just see this window and then nothing happens.