
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (106)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (6331)
-
python with ffmpeg fails randomly
8 juillet 2017, par Jim WeisbinPython 2.7.1 on Mac OS X 10.12.5, ffmpeg 3.3.2 (installed with Brew).
I’m calling ffmpeg on a loop though thousands of Apple Lossless files, converting to mp3 and tagging as I go. Here’s the call :
thecall = '/usr/local/bin/ffmpeg -hide_banner -loglevel error -i ' + <path to="to" m4a="m4a" file="file"> + ' -i ' + <path to="to" artwork="artwork"> + ' -map 0:0 -map 1:0 -id3v2_version 3 -map_metadata -1 -metadata album="xxx" -metadata artist="xxx" -metadata comment="Cover (Front)" -f mp3 -b:a 128K ' + <path to="to" mp3file="mp3file">'
os.system(thecall)
</path></path></path>this works perfectly from the command line, and also works from Python most of the time, but randomly fails with the message
[alac @ 0x7fc888858800] invalid samples per frame: 0
Error while decoding stream #0:0: Invalid data found when processing inputWhat’s strange is that on the files it failed on, if I run it from the command line it succeeds. I tried putting in
time.sleep(5)
but no change. And the failures are not always on the same file, so it seems like it’s a memory or threading issue. I also tried calling withsubprocess()
instead, no change.Any help would be appreciated.
-
Rework pixel_var2
1er mai 2017, par Henrik GramnerRework pixel_var2
The functions are only ever called with pointers to fenc and fdec and the
strides are always constant so there's no point in having them as parameters.Cover both the U and V planes in a single function call. This is more
efficient with SIMD, especially with the wider vectors provided by AVX2 and
AVX-512, even when accounting for losing the possibility of early termination.Drop the MMX and XOP implementations, update the rest of the x86 assembly
to match the new behavior. Also enable high bit-depth in the AVX2 version.Comment out the ARM, AARCH64, and MIPS MSA assembly for now.
-
Adding metadata with images to audio files using ffmpeg
8 mai 2017, par Padam SethiaUPDATE :
Not able to embed artwork to audio file , here my command :
ffmpeg -i ./tmp/Feeling_Good.mp3 -i './tmp/artwork/default.png' -map 0 -map 1 -c copy -codec -id3v2_version 3 -metadata title='Feeling Good' -metadata TPE1='Gryffin' -metadata TPE2='Gryffin' -metadata album='' -metadata genre=' ' ./tmp/fumen_Feeling_Good.mp3
ERROR :
[NULL @ 0x106b0e0] Unable to find a suitable output format for '3'
3: Invalid argumentI want to add album art and meta data at one go to audio files , I have tried this command , but it doesn’t seem to work moreover it creates an empty file.
Here’s my command :ffmpeg -loglevel quiet -i ./tmp/Heres_to_never_growing_up.mp3 -i ./tmp/artwork/default.png -codec copy -id3v2_version 3 -metadata title='Heres to never growing up' -metadata TPE1='Avril Lavigne' -metadata TPE2='Avril Lavigne' -metadata comment='Cover (Front)' -metadata album='unnamed' -metadata genre='unnamed' ./tmp/Heres_to_never_growing_up.mp3