
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (7)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 (...)
Sur d’autres sites (858)
-
PHP FFMPEG AUDIO ARTWOARK METADATA
12 novembre 2020, par Ali SkantmediaI am using laravel-ffmpeg Package and I want to put the image on the audio file.
My code is as follows :


$thumbnailUrl = Storage::disk('thumbnail')->path($thumbnailPath);
 $audioUploaded->filters()->addMetadata([
 "title" => $song->title_en,
 "artist" => "firs artist",
 "album" => 'album name',
 "album_artist" => 'second artist',
 "track" => 2,
 "year" => 2020,
 "genre" => 'persian',
 "comment" => 'comment',
 "artwork" => $thumbnailUrl
 ]);



But I make a mistake. How do I insert an image of an URL or file system disk into an audio file ?


In documentation :


$audio->filters()->addMetadata(["artwork" => "/path/to/image/file.jpg"]);



-
ffmpeg add metadata to ogg(opus) and embed image
22 avril 2020, par Calendarlike the title I want to add/change metadata to
ogg(opus)
files in one folder(one album/one artist).When i encode fromwav/flac
toopus
i usually use


for f in *.*; do ffmpeg -i "$f" -c:a libopus -b:a 510000 "${f%.*}.ogg"; done




Then when i test one file with



for f in *.*; do ffmpeg -i "$f" -c copy -metadata artist="artist name" -metadata album="album name" "${f%.*}.ogg"; done




The result is the file reduced to just like 47kb(so i assumed that input and output name can't be same).



So any efficient way to add/change metadata while retaining same name ?
And how to embed image to the ogg(opus) files ?I want to have cover art/image displayed when playing the files.


-
avformat/dashdec : Also fetch final partial segment
5 avril 2021, par Matt Robinsonavformat/dashdec : Also fetch final partial segment
Currently, the DASH demuxer omits the final segment for a non-live
stream (using SegmentTemplate) if it is shorter than the other segments.Correct calc_max_seg_no to round up when calulating the number of
segments instead of rounding down to resolve this issue.Signed-off-by : Matt Robinson <git@nerdoftheherd.com>