Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9597)

  • FFMPEG in Windows 7 : merge mp4 files from different folders in a batch

    22 avril 2014, par user3406207

    I would like to concatenate 3 mp4 videos into one avi video for every folder of a directory, with FFMPEG on Windows 7.

    I have started this way :

    ffmpeg -f concat -i mylist.txt -c copy E:\EA2014\EX14R\EX14R.avi

    with mylist.txt being :

    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GOPR0001.MP4'
    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP010001.MP4'
    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP020001.MP4'

    This works fine. Now, I would like to automate it because I have lots of those folders full of videos to merge.
    I tried with this to start with :

    printf "file '$s'\n" .E\EA2014\EX14R\DCIM\100GOPRO\*.MP4 >> mylist.txt

    But it tells me that

    "printf is not recognized as an internal or external command, operable program or batch file"

    Is it because I work in Windows ? Anyone could help me achieve it in another way ?

    Needless to say that I am a newbie !

    Thanks !

  • How do I compile a 64-bit version of ffmpeg on Windows ?

    30 septembre 2016, par lyxera

    i need to compile ffmpeg (64 bit shared dll) for windows.
    however I configure in mingw, it always produces 32 bit binary for me.

    tried this already

    ./configure --enable-shared --disable-static --enable-memalign-hack --arch=amd64
    ./configure --enable-shared --disable-static --enable-memalign-hack --arch=x86_64

    my guess is that a x86 to x86_64 cross compiler is missing.

    but just can find a way to make those 64bit dlls.

  • Ffmpeg concat on windows return protocol error

    2 juillet 2020, par padavan

    hi i have ffmpeg on win10.
I try concat files :

    


    ffmpeg -i "concat:1.jpg|2.jpg" out.gif


    


    but always get only one\first image in out.gif result.

    


    Late i find on manual :
"This is analogous to using cat on UNIX-like systems or copy on Windows."
I try

    


    ffmpeg -i "copy:1.jpg|2.jpg" out.gif


    


    and get error :

    


    


    copy:1.jpg|2.jpg : Protocol not found