
Recherche avancée
Autres articles (27)
-
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 (4332)
-
Révision 21338 : Report de c21337 : Ne pas confondre le Kazakh (kk - http://fr.wikipedia.org/wiki...
5 mai 2014, par kent1 - -
Translate ffmpeg command to equivalent libav usage in C++ ?
12 mai 2023, par copperyinHow I can convert this ffmpeg command :


ffmpeg -f libndi_newtek -i "COPPERYINPC (OBSNDI)" -f flv "rtmp://192.168.31.166/live/stream



...to C++ API that can be complied in Ubuntu 18.04 with ffmpeg lib v3.4.12 and NDI lib v4.5.3 ?


Above , in fact, I want to push ndi to rtmp use C++ API ,not ffmpeg command.


compiled with gcc , running in Ubuntu 18.04 ,and I build in VS2019.


-
Request aid to translate from an old avconv code to ffmpeg
27 septembre 2022, par AzankiewI am working on an old script which uses avconv to manipulate some videos. I wanted to ask help to convert the following code into ffmpeg as I aknowledged avconv is not supported anymore.


The code is :


subprocess.call('avconv -i %s -an -filter_complex "select=between(n\,%s\,%s),setpts=PTS-STARTPTS, crop=%s:%s:%s:%s, scale=-2:224" %s'%(
 input_video_folder+clip.video_name,
 clip.start_frame,
 clip.end_frame,
 crop_width,
 crop_height,
 crop_left_distance,
 crop_top_distance,
 video),
 shell=True)