
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 (108)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (9345)
-
nal_ref_idc value for the last frame in GOP when B frame is there for x264 encoding
21 février 2018, par MSD Paulnal_ref_idc value during x264 encoding for each frame signifies that whether decoder has to remember or keep those frames in memory or not or in other words, whether those are reference pictures or not.
In general, I frame with nal_ref_idc value =3 and for P frames, the value = 2.
If one considers the GOP of this pattern, IPPPIPPP......
then why the last P also has a nonzero value of 2. I think it should be 0.
can anyone please tell why the last frame has nonzero nal value ?
-
Screenshot every 5 or 10 min from rtsp source using ffmpeg
24 octobre 2017, par user8826215Hello i try make script who get screenshot from ip camera every 5 or 10 min
this script is workffmpeg -rtsp_transport tcp -i "$SOURCE"-vf fps=fps=1/20 -update 1 /picture1.jpg
But when i start script. It make one shot for 20 second. I need just one pictures and wanna script stop.
I can make bash script to run script every 5 or 10 min.
When start for 2 time script ask me to Overwrite and i need say Y. This is not good for me.PS. sorry for my bad english
-
Improve FFmpeg time ? conversion takes very long
15 avril 2015, par RubytasticI have several rules to convert a movie to several formats and create a preview image. Problem is the execution of these takes very long.
Also the outputted quality is very low. I harvested these examples from several sources.What could be done to
* improve speed
* improve quality ?ffmpeg -y -i /file/$1.flv -acodec libmp3lame -ar 44100 -ac 1 -vcodec libx264 /file/$1.mp4
ffmpeg -i /file/$1.mp4 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 /file/$1.webm
ffmpeg -r 30 -i /file/$1.mp4 -vcodec libtheora -acodec libvorbis /file/$1.ogv
ffmpeg -i /file/$1.mp4 -ss 3 -f image2 -vframes 1 -s 600x480 /file/$1.png