
Recherche avancée
Autres articles (31)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6067)
-
fate : Add tests for RealAudio 1.0 (14.4) and RealAudio 2.0 (with 28.8)
21 juillet 2014, par Katerina Barone-Adesi -
Converted mp4 not displaying image which was added with FFMPEG [duplicate]
3 décembre 2015, par AviThis question already has an answer here :
-
ffmpeg PNG to mp4 - Black screen
1 answer
I am converting a mp3 to a mp4 and simultaneously adding an image to it using FFMPEG.
Here is the command I am using.
ffmpeg -loop 1 -i ../image.jpg -i "track 1.mp3" -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest -vf scale=800:400 "track 1".mp4
The image appears when the video is played in a web browser. However, it doesn’t appear when the video is played on Windows Media Player or on QuickTime.
Any ideas why ?
-
ffmpeg PNG to mp4 - Black screen
-
Filter the video while keeping the bitrate (FFmpeg) [migrated]
20 décembre 2013, par TimofeyFor experimental purposes, I need to filter my video (using
-vf
option) and change, say, brightness, but keep the same bitrate as in original video.Just for testing purposes, I change RGB values to make video completely black using line like this :
ffmpeg -i input.mp4 -vf lutrgb='r=0.0*val:g=0.0*val:b=0.0*val' output.mp4
So far, I tried to specify bitrate manually by adding
-b
,-minrate/maxrate
and-q
options to this line, but no matter what I do, FFmpeg keep reducing the br of the output video to just a few kilobytes.And my question is - if it's possible to keep bitrate on the same level even if if I change RGB values to be completely black (as an extreme case).