
Recherche avancée
Autres articles (33)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (5972)
-
Transcode from a live m3u8 using -ss
20 août 2015, par pgmI’m trying to create a VOD hls clip from a live hls stream on adobe media server using ffmpeg and nodejs.
An example of the command I’m using looks like this :
ffmpeg -report -analyzeduration 999999999 -probesize 999999999 -ss 50 -i http://live.m3u8 -y -r 29.97 -threads 0 -hls_list_size 0 -c:v copy -a:v copy streamoutput.m3u8
The problem is the -ss param (start time) is calculating the start time from the live point on the stream, rather than from the first ’ts’ fragment. I’d like to be able to encode inside of a "DVR window," meaning seeking from the beginning of the stream, not from the live point of the stream.
Example : I use the param
-ss 50
and it won’t encode for 50 seconds until the live stream catches up, outputting this in the ffmpeg log :[h264 @ 0000000002beae00] non-existing PPS 0 referenced
[h264 @ 0000000002beae00] non-existing PPS 0 referenced
[h264 @ 0000000002beae00] decode_slice_header errorOnce the live stream catches up to the 50 second delay it begins encoding. It works this way when I use
-ss
as either an input parameter or output parameter.Is there a way to accomplish this ? I’ve noticed that if I leave
-ss
completely out of the command, it will start at the beginning of the stream, but as soon as it’s there, even as a 0, it will start at the "live point."Any help is much appreciated !
-
ffmpeg hundreds of videos- to-image as shell script in keyboard maestro
28 juillet 2023, par LeopardiFirst I would like to say that I use MacOS, I am new using ffmpeg and keyboard maestro and have no little to none experience in coding. But I think I did learned a bit is the past few weeks trying to solve the problem I will ask now. Believe me I tried searching for answers online and did a lot of trial and error before coming here to ask my question.
so here is what I am trying to do :


I have a folder (/Users/Documents/clips) with 450 short AVI clips (foto1.avi, foto2.avi...., foto450.avi) from which I would like to extract all frames from. I know how to extract all frames from 1 clip and copy them to an existing directory :


*ffmpeg -i /Users/Documents/clips/foto1.avi /Users/Documents/Frames/Foto1/frame%06d.png *


With their command all frames from the clip Foto1.avi (frame000001.png, frame000002.png...., frame000132.png) are copied to the folder /Foto1.


With keyboard Maestro I created 450 folders named afters the 450 .avi clips.


Is there a way to write a ffmpeg command that will extract the frames of all 450 .avi clips to the folder with the same name as the file ?


I was hoping there would be a way of seeing variables in this kind of way :


ffmpeg -i /Users/Documents/clips/foto%.avi /Users/Documents/Frames/Foto%/frame%06d.png


I really appreciate any help. Thank you !


I tried searching for answers in forums, ffmpeg database. And since I have almost no knowledge on coding sometimes is hard to decipher and understand the meaning of the code.


-
avdevice/decklink : 10 Bit support for Decklink input device
18 janvier 2015, par Georg Lippitschavdevice/decklink : 10 Bit support for Decklink input device
Example to capture video clip at 1080i50 10 bit :
ffmpeg -bm_v210 1 -f decklink -i ’UltraStudio Mini Recorder@11’ -acodec copy -vcodec copy output.aviSigned-off-by : Michael Niedermayer <michaelni@gmx.at>