Recherche avancée

Médias (91)

Autres articles (89)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 2011

    Contrairement à 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 2011

    Documentation 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 user2251342

    The 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 value

    BUT, 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 Dobryaev

    Suppose 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 :

    


      

    1. 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]

      


    2. 


    3. Parallel download each fragment with size 10Mb

      


    4. 


    


  • Download HLS (m3u8) file with all audio, video tracks and subtitles [closed]

    24 juillet 2024, par Eric Nebe

    It 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