
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (12)
-
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 (...) -
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 (...) -
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 (2961)
-
ffmpeg create video from a sequence of images
1er février 2021, par t97I have a sequence of images as follow :


img_1.png
img_2.png
img_3.png
...
img_1799.png



From the documentation I run this command


ffmpeg -f image2 -pattern_type glob -framerate 24 -i 'img_*.png' test-size.mp4



but it doesn't generate the video correctly. I also looked online but wasn't able to find the correct command.


what's the command to run to merge all the images so the output video is 30s long at 24 fps ?


-
Got incorrect audio duration from ffmpeg
8 septembre 2021, par RemerazeI used an ffmpeg command to export parts of an audio clip :


ffmpeg -i {path} -acodec copy -ss {start_time} -to {end_time} {output_path}



Unfortunately, this has the side effect of not changing the time duration in the file's details section, making many programs I use think the time of the cut audio files is much more than it really is.


Is there a way to either make ffmpeg change the duration, or find a command in python that can change an audio file's "length" stat so I can do it manually ? I couldn't find any way online.


Thanks.


-
any solution to Matlab VideoReader on compressed avi file on Mac ?
3 décembre 2016, par Peng JL-ZhulinI am working on some video gamma correction. And I used some sample avi uncompressed clips from online, everything works just fine.
But once I try to use our own .avi video 1280x800 20 second about 400mb, Matlab can not read file through ’VideoReader’.I’m really sure the problem is that my video is compressed avi. And I have tried the following to solve it :
- some say in mac os, download gstreamer 0.10 may help. I did, but problem remained.
- i tried to use ffmpeg to convert the compressed avi to uncompressed avi (i dont think i am supposed to do this tho). but the new uncompressed video became a mess.
So, I was thinking, when working on compressed avi file in MATLAB in mac, is there a godd routine that people follow ?
Thanks a lot.