
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (89)
-
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) (...)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (3910)
-
How to install sharedhostffmpeg on a host running redhat linux while not being root ?
30 avril 2013, par user2251342The shared host is running on Red Hat 4.4.7-3.
All these packages have successfully installed :
presetup.sh, autoconf.sh, automake.sh, libtool.sh, libiconv.sh, libpng.sh, libjpeg.sh, zlib.sh, libwmf.sh, freetype.sh, gettext.sh, gd.sh, ruby.sh, flvtool2.sh, lame.sh, codecs.sh, libogg.sh, libvorbis.sh, vorbis-tools.sh, libtheora.sh, amrnb.sh, amrwb.sh, liba52.sh, facc.sh, faad2.sh.
That's exactly all the files just before ffmpeg itself !
I know the error has to do with a library. However, I'm not familiar with libraries. The error message says :
/usr/bin/ld : /home/xxxxx/lib/libz.a(compress.o) : relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object ; recompile with -fPIC
/home/xxxxx/lib/libz.a : could not read symbols : Bad valueBUT, when I look at my zlib log file(sharedhostffmpeg.1.0.2.log.15939), no errors show up.
Does anyone know how to recompile with fPIC ?
-
download video fragment by size usnig ffmpeg
6 mars 2023, par Ivan DobryaevSuppose I have some video url. I want to download video fragment by size (equal time intervals may have different sizes).


I have some different ways :


- 

-
The best one. Get list of start and finish time points for each fragment (without download full video). For example :
[(0, 15, 10Mb), (15, 40, 10Mb), etc]


-
Parallel download each fragment with size 10Mb








-
-
Download HLS (m3u8) file with all audio, video tracks and subtitles [closed]
24 juillet 2024, par Eric NebeIt is pretty easy to download a m3u8 file and convert it to mp4 format with Ffmpeg tool, but is there a way to download the complete HLS content with all audio & video tracks as well as subtitles and store it in a single file ?


I've been researching days for that information but couldn't find anything, all articles are aimed to show how to download a single audio and video track to a mp4/ts files


Thank you everyone in advance


I tried and managed to download the m3u8 file into mp4/ts only :


ffmpeg -y -loglevel verbose -i "http://exampleurl.com/file.m3u8" -c copy -f mpegts output.mp4