
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (82)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (9420)
-
ffmpeg : Extract unknown data stream from video container
23 juillet 2020, par PikkostackI have a .MOV container which contains the following tracks :


Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 3840x2160 [SAR 1:1 DAR 16:9], 100619 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
Metadata:
 creation_time : 2020-07-21T22:48:24.000000Z
 handler_name : DJI.AVC
 encoder : AVC encoder
Stream #0:1(eng): Data: none (priv / 0x76697270), 87 kb/s
Metadata:
 creation_time : 2020-07-21T22:48:24.000000Z
 handler_name : DJI.Meta
Stream #0:2(eng): Subtitle: mov_text (text / 0x74786574), 2 kb/s (default)
Metadata:
 creation_time : 2020-07-21T22:48:24.000000Z
 handler_name : DJI.Subtitle



As you can see, stream #0:1, called DJI.meta, is of an unknown data format. I just want to extract the raw data of this stream to a file. So that is the ffmpeg command I tried :


ffmpeg -i .\DJI_0001.MOV -map 0:1 metadata



But using this command results in the following error :


Unable to find a suitable output format for 'metadata'
metadata: Invalid argument



How can I tell ffmpeg that the data should not be formated, so that only the raw data is extracted ?


-
avformat/riffenc : indicate storage of flipped RGB bitmaps
8 juillet 2020, par Gyan Doshiavformat/riffenc : indicate storage of flipped RGB bitmaps
Some legacy applications such as AVI2MVE expect raw RGB bitmaps
to be stored bottom-up, whereas our RIFF BITMAPINFOHEADER assumes
they are always stored top-down and thus write a negative value
for height. This can prevent reading of these files.Option flipped_raw_rgb added to AVI and Matroska muxers
which will write positive value for height when enabled.Note that the user has to flip the bitmaps beforehand using other
means such as the vflip filter. -
Determine FFmpeg codecs available for container
19 juillet 2020, par CasualDemonI am looking to generate lists of supported video / audio / subtitle tracks for each type of container in a particular build of FFmpeg.


For example, I want to avoid errors like
Could not find tag for codec <> in stream #0, codec not currently supported in container


I know I can list available codecs with
ffmpeg -codecs
, and find details about a muxer withffmpeg -h muxer=<muxer></muxer>
likeffmpeg -h muxer=matroska
but that will only show default codecs, not all possible.

Muxer matroska [Matroska]:
 Common extensions: mkv.
 Mime type: video/x-matroska.
 Default video codec: h264.
 Default audio codec: vorbis.
 Default subtitle codec: ass.



Basically I want to run this command across all available muxers to build up a table like wikipedia's format comparison charts that is FFmpeg build specific. This is designed to go in a program that wraps around FFmpeg, and I need to know which formats are valid for each container / file extension per FFmpeg build.


Thanks !