
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6681)
-
Announcing TMPGEnc 4 : now with x264 !
A few months ago, we announced a commercial licensing program so that even companies unable to use GPL software in their products have a chance to use the open source x264 instead of proprietary alternatives. The system worked on two basic concepts. First, all licensees would still be required to give their changes to x264 back to us : x264 must forever remain free, with no useful contributions kept hidden from the community. Second, all the profits would go directly back to x264, primarily to the developers who’ve made the most significant contributions to x264 over the years, but also to funding future development, bounties for new features, as well as contributing to other related projects (e.g. Videolan and ffmpeg).
Over the past couple of months, we’ve gotten an enormous response ; over 40 companies have inquired about licensing, with more contacting us every day. Due to the sheer volume of interest, we’ve partnered with CoreCodec, the creators of the free Matroska container format and developers of CoreAVC, to make x264 as widely available as possible in the world of commercial software as it is in the world of open source. All of this is already filtering back to benefiting x264 users, with many bugs being reported by commercial licensees as well as some code contributed.
Today, we announce the first commercial consumer encoding software to switch to x264 : Pegasys Inc.’s TMPGEnc. Expect many more to follow : with x264 now available commercially as well as freely, there are few excuses left to use any other H.264 encoder. Vendors of overpriced, underpowered proprietary competitors should begin looking for new jobs.
-
How to add a comment into a mp3, in a specific language, using ffmpeg [duplicate]
20 août 2021, par Valery LetroyeI am fighting with ffmpeg to add a comment in french into a mp3. I want that comment to be displayed within the tab "Details" of the "Properties" window that I can open from Windows Explorer (which is using French as "Display Language").


Ie. : I want this view :




Unfortunately, I can't find how to do it.


In the illustration above, I did edit the comment directly from the "Details" tag of the "Properties" window. If I look at the Exif info of the file with "exiftool test.mp3", I see


Comment (fra) : Test Comment FR



Next, if I open the file test.mp3 with mp3tag (where fra is defined as my language via the Options > Advanced), I see correctly the comment :




Then, if I replace that comment into "Test Comment FR - Edit", within mp3tag, and save it, here is what I get with exiftool :


Comment (fra) : Test Comment FR - Edit
Comment : Test Comment FR - Edit



mp3tag has updated the Exif info "Comment (fra)" and added the ID3 tag "Comment".


Now, if I try to add the comment with ffmpeg with the following commands (to clean first all metadata of my previous tests) :


ffmpeg -i test.mp3 -map 0 -map_metadata -1 -c copy test-blank.mp3
ffmpeg -y -i test-blank.mp3 -metadata comment="Test Comment FR - ffmpeg" -c copy test.mp3



Here are the Exif info I get :


User Defined Text : (comment) Test Comment FR - ffmpeg



This info is not displayed in the "Details" tab of the "Properties" window.
Notice that it is however properly displayed by mp3tag.


I did try to specify the language to ffmpeg with -metadata language="fra", or to use the metadata "Comment" or "Comment (fra)" instead of "comment", but nothing helped.


I am totally lost as not an expert in ID3 and ffmpeg... And I didn't find any trick on Google.
NB. : I am using ffmpeg and exiftool in a Shell console on my Synology, to convert mp4 to mp3 (
ffmpeg version 2.7.7 built with gcc 4.9.3).


Is there anyone experienced with ffmpeg who could guide me ?
PS. : I am even not sure that the comment added by ffmpeg would be displayed by a "English" version of Windows...


A big thx in advance !


V.


-
pixfmt : Add ARIB STD-B76 color transfer characteristic
15 juin 2016, par Neil Birkbeckpixfmt : Add ARIB STD-B76 color transfer characteristic
Adding hybrid log-gamma (https://en.wikipedia.org/wiki/Hybrid_Log-Gamma)
based on the standardization in ARIB STD-B67 :
http://www.arib.or.jp/english/html/overview/doc/2-STD-B67v1_0.pdfThe choice of enum value of 18 is consistent with HEVC :
http://phenix.it-sudparis.eu/jct/doc_end_user/current_document.php?id=10481And also with latest proposal for color format in mkv :
https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&q=Colour+Format+proposalSigned-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>