
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (35)
-
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) (...)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6237)
-
Revision 75038 : Ajout de deux paramètres au modèle doc_img : -* download ou ...
28 août 2013, par kent1@… — LogAjout de deux paramètres au modèle doc_img :
- download ou telecharger string : si == oui affiche un lien de téléchargement du document sous la prévisualisation
- class_btn_download string : class à ajouter au bouton download
On évite également l’Ancre de pagination par défaut en mettant son id sur la div parente
div class="pagination" pour être compatible avec SPIP Bootstrap
On inclue inc/securiser_action dans mes_fonctions pour avoir la fonction calculer_cle_action disponible
-
How can I use ffmpeg to download an m3u8 with multiple audio tracks ?
4 septembre 2018, par casolorzI want to download an m3u8 with multiple audio tracks but when I use ffmpeg to do it the file ends up with just one audio track. What switches do I need on ffmpeg to get all the audio tracks that are on the m3u8 manifest ?
This is the command I used :
ffmpeg -i https://domain/path_to_m3u8 -c copy multitrack.mp4
Thanks.
-
FFMPEG download m3u8 faster
23 août 2018, par Bruno AndradeI have a server with 1 Gbps port speed where I am trying to download m3u8 videos from a website. But he is very slow. I want to know if there is something in my ffmpeg code that I can do to make it get faster ?
ffmpeg -hide_banner -loglevel verbose -n -i http://example.com/list.m3u8 -map 0:4 -map 0:5 -acodec copy -bsf:a aac_adtstoasc -vcodec copy video.mp4 1> log.tx 2>&1
Does the CPU influence this type of ffmpeg download ? What I understand of the code is that it is saying not to encode anything. Download the same video is on the site. So CPU processing would not influence the speed correct ?