
Recherche avancée
Autres articles (24)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (4507)
-
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.
-
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.


-
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 ?