
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (68)
-
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 ;
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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
Sur d’autres sites (8217)
-
video preview from remote mp4 [h264] file
20 novembre 2015, par sathiaI was trying to make a video preview from a remote video (smaller size, short clip and no audio. you get the idea)
By knowing the video duration, and bitrate (constant) is rather easy to make several byte-range requests in order to fetch chunks of it.
Once all the needed chunks are downloaded I use the "concat" method of ffmpeg to make a single video (this is in order to avoid to download all the video locally)
well, technically it all works perfectly the problem is that most of the chunks I download have pretty severe aberrations, and I mean, it’s usually all green and pixelated, rubbish.
Is this a limit on the h264 protocol or I should maybe find the first keyframe and start from there (on each chunk of course) ? thanks
-
How to extract audio tracks from a stream using FFMPEG or other tools ?
17 septembre 2023, par Vassili BagrovHere is the stream link that I am trying to download.


I can download the video, but for some reason it doesn't include the audio stream.


The audio stream is also in .ts format and has 1569 chunks.


When I downloaded all the audio files, I tried to convert them in single temp.ts file to them convert it into an mp3 file with this command :


cat audio_7e42e066-9f6c-44f4-9ac8-10b50c3edfae_*.ts > temp.ts



I tried to then convert it into an mp3 file with this command :


ffmpeg -i temp.ts -acodec copy out.mp3



But got an error :


temp.ts: Invalid data found when processing input



What are my options to download audio files ? There are actually 3 audio tracks if I watch the video from the website.
Please tell me there is a way to do it other than screen record the whole video.


-
Is this the best way to decrease the number of failures when downloading m3u8 ?
26 juillet 2022, par zackchess1I have a bunch of m3u8 links that I am trying to download.


When I use ffmpeg, I get an average of 8/10 videos. The remaining 2 videos simply don't download. I use this command :


ffmpeg -i http://.../playlist.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4


I have seen suggestions to use yt-dlp and aria2c to reduce the number of failures. Do either of these actually affect failure rates ?


Would you suggest using :


yt-dlp M3U8LINK


OR


yt-dlp --downloader aria2c M3U8LINK


IF NOT, WHAT COMMAND DECREASES THE NUMBER OF FAILURES ? Thanks.