
Recherche avancée
Autres articles (94)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (4857)
-
NVEnc Directshow Filter [NVIDIA VIDEO ENCODER FILTER]
26 janvier 2020, par gaamaaI could successfully use h264_nvenc in ffmpeg to record my video source using nVidia.
But I need Pause/Resume the recording.
Which seems not possible with ffmpeg.
Suspend ffmpeg process pause the video frame but file continues.So I need a directshow filter with h.264 nvenc support to use in my application.
I need .ax or .dll directshow filter to test in graphedit.
I couldn’t anything on the net.
Could some expert help me to get a directshow filter or some clue ? -
I want to get a keyframes using javaCV
8 février 2014, par user2660385I am a newbie in a Computer Vision.
I am using Netbeans 7.4 with javacv,opencv and FFmpeg libraries.
I want to extract keyframes(important frames) from the videos(should support any type of formats).
Kindly assist me by providing code.
-
how to run ffmpeg terminal (mac) command in java
18 avril 2016, par HasanI use FFmpeg codec in order to do the video conversion. This time I have a huge number of videos, so I am trying to do the video conversion automatically.
I am trying to do so like this in java.
Runtime.getRuntime().exec("ffmpeg -video_size 1920x1080 -r 25 -pixel_format yuv422p -i input.yuv -vf yadif output.yuv");
But my java program returns the following error :
Cannot run program "ffmpeg": error=2, No such file or directory
Does anyone has any clue how I can do it in java ?