
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (102)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (9220)
-
Stremio::FFMPEG Error while opening encoder for output stream #0:1
28 février 2015, par user2547496Getting this error using Stremio::FFMPEG wrapper for converting /MOV to .MP4
Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height
Here are my commands
require 'streamio-ffmpeg'
movie = FFMPEG::Movie.new("tmp/movie.ogg")
movie.transcode("tmp/movie.mp4")Here’s the output =>
Running transcoding...
ffmpeg -y -i tmp/movie.ogg tmp/movie.mp4
E, [2015-02-28T03:06:00.797778 #6381] ERROR -- : Failed encoding...
ffmpeg -y -i tmp/movie.ogg tmp/movie.mp4
Output #0, mp4, to 'tmp/movie.mp4':
Stream #0:0: Video: h264, yuv420p, 640x480 [SAR 1:1 DAR 4:3], q=-1--1, 90k tbn, 24 tbc
Stream mapping:
Stream #0:0 -> #0:0 (theora -> libx264)
Stream #0:1 -> #0:1 (flac -> libaacplus)
Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height
Errors: encoded file is invalid.
Stream mapping:
Stream #0:0 -> #0:0 (theora -> libx264)
Stream #0:1 -> #0:1 (flac -> libaacplus)
Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height -
FFmpeg_frame toGDImage produces messed up thumbs
27 juin 2013, par user2526873I have written a script in PHP that uploads a movie, converts it to FFmpeg movie and gets the thumb. Everything is working ok, but my thumbs have some sort of blue overlay. My code is :
$movie = new ffmpeg_movie($uploadFile);
$frame = $movie->getFrame(15)->toGDimage();
$width = imagesx($frame);
$height = imagesy($frame);
$framecrop = imagecreatetruecolor(100, 80);
imagecopyresampled($framecrop, $frame, 0, 0, 0, 0, 100, 80, $width, $height);
imagejpeg($framecrop,"file.jpg");What am I doing wrong ? I have this problem with all the movies I upload.
Thanks in advance for your answers !
-
FFMpeg video transpose
26 juin 2014, par SayakiI have movie which is rotated by 90, 180 or 270 degrees. I process that video and make and save processed copy in some place. My problem is that in my processed move rotation is not included e.g. my input video is ratated by 180 degrees but my output video is not rotated at all. Here is my commad :
ffmpeg -i movie.mp4 -vf crop=480:480:80:0 -strict -2 testMovie.mp4
How can I apply rotation from my input movie to my output movie.