
Advanced search
Medias (91)
-
Spitfire Parade - Crisis
15 May 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Wired NextMusic
14 May 2011, by
Updated: February 2012
Language: English
Type: Video
-
Video d’abeille en portrait
14 May 2011, by
Updated: February 2012
Language: français
Type: Video
-
Sintel MP4 Surround 5.1 Full
13 May 2011, by
Updated: February 2012
Language: English
Type: Video
-
Carte de Schillerkiez
13 May 2011, by
Updated: September 2011
Language: English
Type: Text
-
Publier une image simplement
13 April 2011, by ,
Updated: February 2012
Language: français
Type: Video
Other articles (67)
-
Organiser par catégorie
17 May 2013, byDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Création définitive du canal
12 March 2010, byLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
Le profil des utilisateurs
12 April 2011, byChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
On other websites (5543)
-
ffmpeg creating MPEG Video slice code 01e0
6 April 2014, by dinatisI have been using ffmpeg to encode some MPEG files (-vcodec mpeg1video), but at the end of the first slice, I see the code 01e0. The decoder implementation I am using is expecting a code in the range 0101 - 01af. So when 01e0 is encountered, the decoder thinks there are no more slices, pictures or GOP's.
Does anyone what the 01e0 code signifies and what ffmpeg options I should use to get the slice codes (if that is what they are) appearing in the expected range?
-
what is ffmpeg exit code 2? and also output error array is empty and not working in php
14 June 2019, by Mehdi ZamaniI use ffmpeg to convert bitrate to 128 but not working in php
exec("ffmpeg -i input.mp3 -codec:a libmp3lame -b:a 128k output().mp3 2>&1",
$output, $exit_code);
if ($exit_code!= 0) {
$data['message'][] = "Error";
}
print_r($output);
print_r($exit_code);
exit;After running this code show error code 2.
The output is an empty array and also exit_code is 2 and not create output.mp3 file.I already study How can I find out what this ffmpeg error code means? but this isn’t my problem and don’t explain error code 2 or error code 2 is not defined. My problem is dont show any error and error message is empty just exit_code show 2 that means is some error happened.
-
FFMPEG code not generating thumbnail, but it was working before [closed]
25 March 2020, by 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.