
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (23)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Personnaliser l’affichage de mon Médiaspip
27 mai 2013Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
Comment supprimer le nombre de vues d’affichage d’un média ?
Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
Administrer > Gestion du squelette > (...)
Sur d’autres sites (7913)
-
ffmpeg - multiline text in metadata (comment tag)
21 juillet 2024, par YaroslavI use ffmpeg to update metadata tags like this way :



ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text"
-metadata comment="comment text" "out.m4a"




Well, "artist text" and "comment text" is usual plain text, but comment field allows to put multiline text. Each line must have new line character to do it. Something like this :



-metadata comment="source: lastfm \r\n tags: tag1, tag2 \r\n ..."




But all characters that I use (\r\n, %nl%, ^N) bring no result.



I run ffmpeg.exe from PHP script on Windows using shell_exec() function



Someone help please, or tell me is it really possible ?...


-
ffmpeg - multiline text in metadata (comment tag)
29 juillet 2016, par decssI use ffmpeg to update metadata tags like this way :
ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text"
-metadata comment="comment text" "out.m4a"Well, "artist text" and "comment text" is usual plain text, but comment field allows to put multiline text. Each line must have new line character to do it. Something like this :
-metadata comment="source: lastfm \r\n tags: tag1, tag2 \r\n ..."
But all characters that I use (\r\n, %nl%, ^N) bring no result.
I run ffmpeg.exe from PHP script on Windows using shell_exec() function
Someone help please, or tell me is it really possible ?...
-
Convert ffmpeg batch file into Linux shell script
30 août 2023, par UNOITI have been using this ffmpeg batch file on Windows to check for video errors


c :\ffmpeg\bin\ffmpeg -v error -i "% dpnx1" -f null - >"% dpnx1.error.txt" 2>&1
pause


I just drag and drop a file or folder onto the .bat file and it creates an error.txt file for each video


Can someone convert this to a Linux shell script


I tried the information provided at


https://linuxconfig.org/how-to-use-ffmpeg-to-convert-multiple-media-files-at-once-on-linux


but I couldn't figure out how to write to an error.txt file for each video