
Recherche avancée
Autres articles (32)
-
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 (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (6233)
-
Split screen and resize on ffmpeg streams
28 juillet 2017, par lukas.gabI want get h264 streams from IP cameras, resize it, combine to grid, and restream or save to file. I succesfull split streams and save, but I don’t know how can I resize streams. Becouse this streems are large, ffmpeg go to 100% cpu, loss frames and crach. Please tell me how can I resize this streams before combine and save ?? Thank for your help and time.
This is my cli
ffmpeg -rtsp_transport tcp -i "rtsp://admin:Pass@192.168.88.76:554/h264" -rtsp_transport tcp -i "rtsp://admin:Pass@192.168.88.76:554/h264" -filter_complex "[0:v][1:v]hstack" -c:v libx264 combo.avi
-
vp9 : split last/cur_frame from the reference buffers.
23 novembre 2013, par Ronald S. Bultje -
jffmpeg.jar how to split a video file to many chunks- Java, Groovy, Grails, Video
9 janvier 2014, par user1245222I was googling whole day to find a proper documentation to split a video using jffmpeg.jar. But unfortunately, I couldn't find anything.
Using java -> groovy, I was able to use native command to split the same. Below is the command.
def command = """ffmpeg -i /opt/eboxdata/uploads/719/Resource/Alfred Hitchcock - Making of Psycho.mp4 -vcodec copy -acodec copy -ss 00:00:00 -t 00:05:00 /opt/eboxdata/uploads/719/Resource/output2.avi"""// Create the String
def proc = command.execute() // Call *execute* on the string
proc.waitFor()Any one could help me to split a video file without using native command. But using jffmpeg.jar