
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 (104)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (7253)
-
Restartable HLS encoding in ffmpeg
9 juin 2023, par TheGreatRamblerI'm trying to encode a HLS video in a restartable way so that it can be run on a preemptive VM. It's possible with the
segment
muxer in FFmpeg to create HLS files with mpegts that can be restarted (Using the-ss [time]
,-segment_start_number [num]
,-mpegts_copyts 1
,segment_list_type csv
and-segment_list_flags live
flags and a bit of coding) but I cannot find equivalent "live" writing for thehls
muxer specifically.

Either I need a solution that allows for writing fmp4 fragments using the
segment
muxer or live writing for thehls
muxer.

-
How to convert the following ffmpeg command to ffmpeg-python code ?
7 juin 2023, par watersheep23I have the following ffmpeg command that works when I enter it into command prompt :
ffmpeg -list_devices true -f dshow -i dummy
. I would like to convert this ffmpeg command into equivalent ffmpeg-python code. How would I do it ? Also, this command only works in Windows : is there a way to convert this command into ffmpeg-python code that works across all operating systems ? There is documentation about how to convert ffmpeg commands into ffmpeg-python code, but this command is different from the ones in the documentation. Any help would be greatly appreciated ! Thanks !

-
aarch64 : vp9 : loop filter : replace ’orr ; cbn ?z’ with ’adds ; b.{eq,ne} ;
9 janvier 2017, par Janne Grunauaarch64 : vp9 : loop filter : replace ’orr ; cbn ?z’ with ’adds ; b.eq,ne ;
The latter is 1 cycle faster on a cortex-53 and since the operands are
bytewise (or larger) bitmask (impossible to overflow to zero) both are
equivalent.This is cherrypicked from libav commit
e7ae8f7a715843a5089d18e033afb3ee19ab3057.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>