
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (58)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (5620)
-
Bump minor versions after 3.2 branchpoint to seperate release
26 octobre 2016, par Michael NiedermayerBump minor versions after 3.2 branchpoint to seperate release
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
how to solved Build fingerprint :'samsung/a5xeltexx/a5xelte:6.0.1/MMB29KB/A510Fx:user/release-keys'error in android
14 novembre 2016, par Virani AshishBuild fingerprint:'samsung/a5xeltexx/a5xelte:6.0.1/MMB29KB/A510Fx:user/release-keys
Revision: "0"
ABI "arm"
pid 1716, tid 3690,name Thread-44811 >>> com.aspiration.gifmaker <<<
Fatal signal 11 (SIGSEGV), code 1, (SEGV_MAPERR),fault addr 0x18
r0 00000018 r1 00000010 r2 c01047f0 r3 00000088
r4 c0104768 r5 00000000 r6 vv589v10 r7 c89f7190
r8 00000000 r9 7fffffff s1 c89f7190 fp c89f706c
ip c42dd180 sp c89f7008 lr bf8a71a8 pc c00b1d00 cpse 200f0010
backtrace :
#00 pc 008f2d00 /data/app/com.aspiration.gifmaker-1/lib/arm/libvideokit.so (av_log+20) -
Batch Copy Cover Art from One Song to Another (Identical File Names)
21 novembre 2016, par LeLwrenceI’m looking for a way to copy the album art from one set of songs to another set of the same songs that don’t have the album art. FFMPEG copies the text tags (artist, album, title...) perfectly, but will not copy the embedded album artwork.
I’ve been trying to batch convert my folder of MP3s into 128k AAC (using FFMPEG and the
libfdk-aac
codec) files to save space on my phone, but it hasn’t copied my album art over to the new songs.
I used the following batch command :FOR /F "tokens=*" %%G IN ('dir /b *.mp3') DO ffmpeg -i "%%G" -c:a libfdk_aac -b:a 128k "%%~nG.m4a"
EDIT : I tried using the following command to test it out, because stream 0:0 is the audio, and stream 0:1 is the JPEG, however it did not work :
ffmpeg -i Estranged.mp3 -map 0:0 -map 0:1 -c:a libfdk_aac -b:a 128k -c:v copy Estranged.m4a
Here’s a paste of the log : http://pastebin.com/dZFsvR7F (I know, it’s not the latest version. I had trouble compiling it myself but I’m currently working on it.)
Is there a way to copy the album art (or entire tag, if need be) from songs with an identical name in one folder to the songs in the new folder ?
I.E.
C:\Folder1\song.mp3
→C:\Folder2\song.m4a
Thanks.