
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (9)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (2422)
-
Revision d6da2ae308 : Merge "Finally removing BOOL_DECODER and using vp9_reader instead." into experim
20 avril 2013, par Dmitry KovalevChanged Paths : Modify /vp9/decoder/vp9_decodframe.c Merge "Finally removing BOOL_DECODER and using vp9_reader instead." into experimental
-
Revision c7a38f77ef : Merge "Removing get_segment_id function and using existing vp9_get_pred_mb_segid
20 avril 2013, par Dmitry KovalevChanged Paths : Modify /vp9/decoder/vp9_decodemv.c Modify /vp9/encoder/vp9_bitstream.c Modify /vp9/encoder/vp9_segmentation.c Merge "Removing get_segment_id function and using existing vp9_get_pred_mb_segid." into experimental
-
FFmpeg "Could not open file" error message when processing with PHP
26 octobre 2015, par FlyingCatI am using
ffmpeg
to get the image from several video files. I got myffmpeg
codes ready but I got the following error when Iexec
my codes.ffmpeg version 0.8.6-4:0.8.6-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
built on Apr 2 2013 17:02:36 with gcc 4.6.3
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
//files info...
//files info...
Incompatible pixel format 'yuv420p' for codec 'mjpeg', auto-selecting format 'yuvj420p'
//file info...
[buffer @ 0x1513c40] Buffering several frames is not supported. Please consume all available frames before adding a new one.
Last message repeated 75 times
[image2 @ 0x1513460] Could not open file : /test/project
av_interleaved_write_frame(): Input/output errorI only show the error messages that have color highlighted.
My code :$ffmpeg ="/usr/bin/ffmpeg";
$image_source_path = '/test/project/test.mp4';
$ALL_PLACE_WIDTH = 300;
$ALL_PLACE_HEIGHT = 300;
$image_cmd = " -r 1 -ss 00:00:10 -t 00:00:01 -s ".$ALL_PLACE_WIDTH."x".$ALL_PLACE_HEIGHT." -f image2 " ;
$dest_image_path = '/test/project';
$str_command= $ffmpeg ." -i " . $image_source_path . $image_cmd .$dest_image_path;
shell_exec($str_command);It seems my Linux wants to me to switch to
avconv
. I am not sure how to fix these errors. Can someone give me a hint about it ?