
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (58)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
Sur d’autres sites (7089)
-
movenc : mark Opus encapsulation as stable
23 mars 2020, par Lynnemovenc : mark Opus encapsulation as stable
The specifications are de-facto frozen now as they've already been used in
production for years, the author has indicated reluctance on IRC to change
it further, and the only potential changes would, from what I understand,
be forward-compatible. -
FFMPEG code not generating thumbnail, but it was working before [closed]
25 mars 2020, par ShijilI want to save thumbnails in my website using this simple FFMPEG code.
I tried to run it, but it shows error<?php
$file="Videos/bloodshot.mp4";
$vname="bloodshot";
$W = intval($_GET['file']);
$H = intval($_GET['file']);
if(substr($file,0,1) != '.'){
$mov = new ffmpeg_movie($file);
$wn = $mov->GetFrameWidth();
$hn = $mov->GetFrameHeight();
$frame = $mov->getFrame(32);
$gd = $frame->toGDImage();
if(!$W and !$H)
{
$W = $neww; // width of the image
$H = $newh; // height image
}
$new = imageCreateTrueColor($W, $H);
imageCopyResized($new, $gd, 0, 0, 0, 0, $neww, $newh, $wn, $hn);
$black = imagecolorallocate($new, 255, 255, 255);
imagegif($new);
imagegif ($new, './thumb/success.gif', 100);
}
?>error log is
[25-Mar-2020 14:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'ffmpeg_movie' not found in /home/xxxxxxx/public_html/Videos/ffmpeg.php:12
Stack trace:
#0 {main}
thrown in /home/xxxxxxx/public_html/Videos/ffmpeg.php on line 12I was able to run it without error in a mobile site few years ago. But it seems to be not working now.
Server has FFMPEG support.
I am not an expert in php, please fix this code for me. -
Is anyone willing to join a GTK+3 project started in 2009 and still active ?
15 mars 2020, par GiuTorfirst of all if my question is not relevant to stackoverflow website please delete it, I apologize in advance.
I started Imagination, a DVD slideshow maker developed with GTK+2 in 2009. Along the years users have contributed with few patches. The software was ported to GTK+3 last year. Imagination works by using Cairo to paint the transition on a GTK drawing area and ffmpeg run in the background to encode the video. I’m currently getting rid of ffmpeg and using libav to encode the video.
Does anybody want to help with libav coding ? The software is available through SVN :
svn co https://svn.code.sf.net/p/imagination/code/trunk imagination
The web site is hosted at sourceforge : http://imagination.sourceforge.net/
Thanks :)