
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (89)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (9257)
-
avfilter/af_stereotools : round-up max size of buffer
20 décembre 2023, par Paul B Mahol -
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"]);



-
How to Pause and Resume Screen Recording in FFmpeg on Windows ?
24 mars, par Iman SajadpurI use FFmpeg on Windows to record my screen. I want to pause and resume the recording properly.
I know that pressing
Ctrl + S
, Pause key on the Keyboard, or suspending FFmpeg via Resource Monitor stops the process, but screen recording conntinues in the background.
Here is an example of the command I use for screen recording :

ffmpeg -f gdigrab -probesize 100M -i desktop -f dshow -channel_layout stereo -i audio="Microphone (2- High Definition Audio Device)" output.mp4


How can I pause recording completely so that no frames are captured during the pause and resume it seamlessly ?