
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (70)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (2346)
-
avcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.
26 octobre 2013, par Ronald S. Bultjeavcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.
Don’t use word-size multiplications if size == 2, and if we’re using
SIMD instructions (size >= 8), complete leftover 4byte sets using movd,
not mov. Both of these changes lead to minor speedups.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
wrong ffmpeg version for xuggler
13 décembre 2011, par kerelI am trying to get Xuggle working on Ubuntu.
This is however my first time using a Unix system.After installing Xuggle and correcting the PATH files I tried some very simple code from tutorials at the xuggle website. But once I attempt to debug my code, it stops and eclipse says
Suspended (exeption IllegalArgumentException)
and refers to line 488 of
MediaReader.readPacket()
After searching possible explanations I found that my FFMPEG version was not the version Xuggle needs. When I test my FFMPEG version from command line with
$ ffmpeg /invalid/file/
it displays--extra-version='4:0.7.2-1ubuntu1'
but according to the xuggle site the--extra-version=
should include the word "xuggle". Following their installation procedures does not change anything.I downloaded the source code from SVN, which includes a ffmpeg folder. I assume this is the ffmpeg version I need. I have no clue however what to do with this folder.
question is : how do I get my ffmpeg version to the xuggle compatible ffmpeg version ?
-
ffmpeg strftime no effect on windows
18 mai 2020, par BenI'm trying to auto mark the output file with timestamps with ffmpeg. Here's my test cmd :



.\ffmpeg.exe -y -loglevel 99 -i test.mp3 -strftime 1 %Y.ogg




I expected a file named
2020.ogg
, however only got%Y.ogg
. In another word, output filename is not processed bystrftime()
. I'm using powershell so there should be no relation with cmd's%%
escaping.


Here's the output : https://pastebin.com/LUVh2kFA I'm using static builds from https://ffmpeg.zeranoe.com (Thanks Zeranoe !) I confirmed that the problem exists in v4.2.2 and git-20200515. Is there any chance to fix it or am I doing it wrong ?