
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 (38)
-
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (6784)
-
avformat/mpjpegdec : make sure we seek back to the ensured buffer
26 septembre 2020, par Marton Balintavformat/mpjpegdec : make sure we seek back to the ensured buffer
It was possible for the old code to seek back before the most recently read
data if start of a new multipart was across read boundaries. Now we read some
small sections multiple times to avoid this, but that is OK.Signed-off-by : Marton Balint <cus@passwd.hu>
-
swscale/utils : override forced-zero formats back to full range
10 octobre 2020, par Jan Ekströmswscale/utils : override forced-zero formats back to full range
Fixes vf_scale outputting RGB AVFrames with limited range flagged
in case either input or output specifically sets the range.This is the reverse of the logic utilized for RGB and PAL8 content
in sws_setColorspaceDetails. -
ffmpeg add album cover art to mp3 with python
19 décembre 2020, par bortyI've been trying to make a python script which merges a mp3 file with a .jpg, but I only get it to create a video out of both inputs, instead of a mp3 with the .jpg just as the cover. I have tried to look for ways other people have done that but I only seem to find the command-line way and nothing regarding python


import ffmpeg

 input_image = ffmpeg.input(r'C:\Downloads\thumbnail.jpg')
 input_audio = ffmpeg.input(r'C:\Downloads\audio.mp4')

 (
 ffmpeg
 .concat(input_image, input_audio, v=1, a=1)
 .output(r'C:\Downloads\audio1.mp4').run()
 )



Thats the ffmpeg part i got in my script which works but not as I need it to