
Advanced search
Medias (3)
-
The Slip - Artworks
26 September 2011, by
Updated: September 2011
Language: English
Type: Text
-
Podcasting Legal guide
16 May 2011, by
Updated: May 2011
Language: English
Type: Text
-
Creativecommons informational flyer
16 May 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (95)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 March 2010, byLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)
On other websites (6957)
-
FFMPEG PHP Message: Unable to save frame
30 April 2020, by Hitesh Vala AhirHello I have try to take thumbnail through FFMPEG but get the error message like Message: Unable to save frame.



PHP 7.0



php-ffmpeg/php-ffmpeg: ^0.16.0



Below is the code



require 'vendor/autoload.php';



$sec =1;
$movie = 'video1581091620.mp4';
$thumbnail = 'thumbnail.png';

try{
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($movie);
$frame = $video->frame(FFMpeg\Coordinate\TimeCode::fromSeconds($sec));
$frame->save($thumbnail);
echo '<img src="http://stackoverflow.com/feeds/tag/&#x27;.$thumbnail.&#x27;" style='max-width: 300px; max-height: 300px' />';
}catch(Exception $e) {
 echo 'Message: ' .$e->getMessage();
}



-
how i can save overlay text box with a video in gallery by using ffmpeg?
10 September 2024, by Umair Manzoorfinal escapedOverlayText = overlayText.replaceAll(''', '\'');
final command =
'-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $outputPath';


print('Executing command: $command');

 final session = await FFmpegKit.execute(command);
 final returnCode = await session.getReturnCode();
 print('here is errror Return code: $returnCode');



that those section of code where this ffmpeg returns the following error
I/flutter ( 6329): here is errror Return code: 1
I/flutter ( 6329): FFmpeg failed with return code: 1


i am trying to save the video with overlay text data in the gallery.


-
Revision 0d80584327: vp8_loop_filter_bh_y_sse2: save/restore xmm registers xmm[6-11] should be saved
21 November 2012, by James ZernChanged Paths: Modify /vp8/common/x86/loopfilter_block_sse2.asm vp8_loop_filter_bh_y_sse2: save/restore xmm registers xmm[6-11] should be saved and restored for Windows x64; prevents an encoder mismatch and some datarate issues. Change-Id: (...)