
Recherche avancée
Autres articles (50)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (...) -
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 (...)
Sur d’autres sites (6972)
-
ffmpeg take snapshot from webcam in windows 10
12 juin 2019, par mrpatgAttempting to use ffmpeg to grab a snapshot from my USB webcam in windows 10.
ffmpeg -f mjpeg "video=HD Pro Webcam C920" "C:\projects\webcam\" -vframes 1 -s 1920x1080 -ss 10 test.jpg
Returns :
Output #0, mjpeg, to 'video=HD Pro Webcam C920':
Output file #0 does not contain any streamI think I might have something backwards here, but I’m not sure what.
-
Create H.264 stream from single PNG
28 avril 2017, par Jim RhodesI have an application that uses RTSP to get a video stream from an IP camera. The application extracts the H.264 data from the RTP packets and sends it to a remote process that decodes the stream (using ffmpeg) and displays it. If the video stream is interrupted for any reason, I would like to insert a static image into the stream being sent to the remote process.
I have a PNG that is the same resolution as the camera. I thought I could use ffmpeg to encode the PNG to H.264 to get an IFrame that I could insert into the stream but I have not had any success. Using ffmpeg I created an MP4 with H.264 encoding from the PNG image and then extracted what I believed was the H.264 data from the MP4 but when I try to decode it ffmpeg returns an error.
Anyone have any ideas on how I could accomplish this ?
-
Android MediaMetadataRetriever.METADATA_KEY_DATE gives only date of video on galaxy S7
3 octobre 2016, par Zaid Bin TariqI am writing a code to get video creation date and time from metadata, i am using following code to get creation date
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(path_to_video);
String date = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE);it works perfect on all devices except Samsung Galaxy S7, it returns only date in "YYYY MM DD" format, no time stamp i need both date and timestamp.
any help in this regard is much appreciated.