
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (23)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (3639)
-
hevc : do generic validation of bitstream
10 août 2014, par Christophe Gisquet -
BASH recursive go trough all subdirectories and if a specific file existis, touch all files from one type in this directory [duplicate]
20 décembre 2023, par mkirbstI have a music collection of the structure Interpret -> Album -> song1.m4a song2.m4a cover.jpg


I can use ffmpeg to add the cover.jpg to the files :


#! /bin/bash

COVER=./cover.jpg

if test -f "${COVER}"
then
 for f in ./*.m4a
 do
 echo "Adding ${COVER} for ${f}"
 mv ${f} tmp.m4a
 ffmpeg -i tmp.m4a -i ${COVER} -map_metadata 0 -map 0 -map 1 -acodec copy ${f} && rm tmp.m4a
 done
else
 echo "No ${COVER} found. Aborting..."
fi



How can I modify my script to do that ?


What it does : when there is a
cover.jpg
in the folder, then add this folder lossless to all m4a audio files.
BUT : It seems that this does not work for all folders. It would be nice to justcd
to the main music folder instead of going to every album folder and run the script above by hand.

What it should do :


- 

- go to every subfolder
- if there is a cover.jpg file then proceed at 3. if not go to step 1. (next subfolder)
- for every m4a in this folder embed the cover.jpg into every m4a file in this subfolder








-
Evolution #3450 : déporter apple-touch-icon.png et autres variantes vers le plugin favicon
8 novembre 2015, par b bVoir aussi #2745 qui intègre la règle pour la redirection des favicons itrucs dans le htaccess de SPIP.
S’appuyer sur un plugin pour cette fonctionnalité permettrait de ne pas avoir de code spécifique à une marque dans le core et de mettre à jour la fonctionnalité indépendamment du core, mais...
L’approche utilisée par le plugin est intéressante (utilisation de insert_head pour déclarer les favicons), mais elle ne semble pas prendre pas en charge l’accès direct aux différents favicons. Du coup, il faudrait tout de même garder les règles de redirection nécessaires dans le htaccess.