
Recherche avancée
Autres articles (15)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (6121)
-
FFmpeg will not run from php
15 mars 2015, par user2392940This is a live server i am on a Windows 2008 Web Edition R2 server with IIS7.
I have tried all of this locally and it works perfectly. At first i thought this may have been a permisson issue i gave all ffmpeg folders and output folders full control. I also checked the php ini file to make sure
exec
is enabled.I was intially running the
exec()
function i later changed it to thesystem()
function to see what ffmpeg was outputting. With thesystem()
function it returns the error "Acess is denied". All of my research points to a IIS setting or Application Pool not having the correct permission. Any help would be much appreciated.FFmpeg location : C :\ffmpeg\bin\ffmpeg.exe
I have been working on this for nearly a week even my server provider has no answer on why ffmpeg will not run from php. I believe this is a little deeper than full paths. It’s obviously a permission problem but the question is where is the permission problem ?
It also seems that no
.exe
file can be executed from php.system ("$ffmpeg -i yourvideo/.mp4 -threads 1 -ss 20 -b 10k -s 240x180 -vf fps=fps=1/20 -vframes 12 -aspect 4:3 thumbs/yourvideo/yourvideo.%01d.jpg 2>&1");
-
How To apply video filter for Opencv VideoCapture in C++
23 février 2021, par 하형욱I am using ffmpeg command for recording movie from webcam Device


ffmpeg -f dshow -i video="USB Video Device" -vf scale=in_range=full d:/video.mp4



and I want to apply option openCV library in C++.
But I don't know apply "-vf scale=in_range=full" option in code. please help me


cv::VideoCapture m_videoCapture;
m_videoCapture.open(3); // 3 is device ID = USB Video Device 
m_videoCapture.set(CV_CAP_PROP_FRAME_WIDTH, 1920);
m_videoCapture.set(CV_CAP_PROP_FRAME_HEIGHT, 1080);
m_videoCapture.set(CV_CAP_PROP_FPS, 30.00);
// Set vf(VideoFilter) here ? whow?
if (!m_videoCapture.isOpened())
{
 ::MessageBox(NULL, "WebCam Device could not be opened succesfully", "CAM", MB_OK);
 return false;
}
return true;

cv::Mat frame;
while (char(cv::waitKey(100)) != 'q')
{
 m_videoCapture >> frame;
 // shoud I write code here for applying videofilteR?

 if (frame.empty()) break;
}



-
Disappearing modules of Node.js
16 avril 2019, par WearponiXMy program needs some node.js modules, but when I install them manually - they disappear.
I tried
npm install ffmpeg-binaries
andnpm install decompress-tarxz
, got a huge log full of errors. I tried to install them manually, then rannpm i
and they disappeared fromnode_modules
folder.https://pastebin.com/7kA7cNFM
here is what I get in CMD after installinghttps://pastebin.com/7kUGNVYa
and here is a full logIs there a way to install
decompress-tarxz
andffmpeg-binaries
?UPD :
Solved that just by deleting package.json