
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (38)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3697)
-
FFprobe, how to get frame rate of animated gif as a decimal in JSON format
7 juin 2020, par codingattyWhen I used ffprobe against an animated gif, I get, among other things, this :



> ffprobe.exe foo.gif
. . . 
Stream #0:0: Video: gif, bgra, 500x372, 6.67 fps, 6.67 tbr, 100 tbn, 100 tbc




Great ; this tells me the frame rate is 6.67 frames per second. But I'm going to be using this in a program and want it in a parsed format. ffprobe does json, but when I use it :



> ffprobe.exe -show_streams -of json foo.gif




The json shows :



"r_frame_rate": "20/3",
"avg_frame_rate": "20/3",




But I want the decimal form 6.67 instead of 20/3. Is there a way to have FFProbe produce its JSON output in decimal ? I can't seem to find it in the docs.



My platform is Windows ; FFProbe is version N-68482-g92a596f.



I did look into using ImageMagick, but the GIF file in question is corrupted (I'm working on a simple repair program) ; IM's "identify" command halts on it, while FFMpeg & FFProbe handle it just fine.



Addition : this is kind of academic now ; I just used (in Python) :



framerate_as_decimal = "%4.2f" % (float(fractions.Fraction(framerate_as_fraction)))




But I'm still kind of curious if there's an answer.


-
dnxhddec : better support for 4:4:4
4 octobre 2015, par Christophe Gisquetdnxhddec : better support for 4:4:4
Profiles 1256 & 1270 (currently) signal at the frame header and MB
levels the colorspace used, either RGB or YUV. While a MB-level
varying colorspace is not supported, whether it is constant can be
tracked so as to determine the exact colorspace.This requires having bitdepth and the ACT and 4:4:4 flags, in turn
needing the CID. Because setting those before having validated
enough things may result in invalid/unset DSP fucntions, setting
the bitdepth in the context is delayed.It is not tested against a true RGB sequence, though.
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Get libx264 to work on flutter android application
17 juillet 2023, par ololoI am using ffmpeg_kit_flutter package in my flutter application and I need to use libx264.


In my Podfile for ios I have the following setup which helped me got libx264 working perfectly for ios :


if plugin_name == 'ffmpeg_kit_flutter'
 pod 'ffmpeg_kit_flutter/full-gpl', :path => File.join(relative_symlink_dir, 'plugins', plugin_name, platform)
 else
 pod plugin_name, :path => File.join(relative_symlink_dir, 'plugins', plugin_name, platform)
 end



However, when I ran the flutter app on android I am getting the error that states :




Unknown encode 'libx264'




Are there any configurations I need to do on the android side of things to get it working for android as well ?