Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (105)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8939)

  • FFMpeg : CFLAGS=-D__STDC_CONSTANT_MACROS ./configure where ?

    24 avril 2013, par olidev

    I got this problem " 'UINT64_C' was not declared in this scope" while using the ffmpeg library for Eclipse running under Ubuntu.

    After a while, I have found this solution : http://code.google.com/p/ffmpegsource/issues/detail?id=11

    But I could not know how to this :

    This should be fixed in our build system no matter what version of ffmpeg you're using. If you're still getting it, run configure like so :
    CFLAGS=-D__STDC_CONSTANT_MACROS ./configure
    and your problems should go away. This applies to other C++ programs using ffmpeg as well and not just to ffms2, but I can't guarantee that other programs won't break if you define that macro (they really shouldn't, though).

    Where can I run the configure ? from Terminal ? I tried with Terminal but it does not work.

    Anybody has an idea how to run the configure ?

    Thanks in advance and your help is much appreciate !

  • Is there any faster way of synchronize the Drive from Colab

    18 novembre 2018, par jperezmartin

    I need to extract many frames of the videos of one dataset stored in Google Drive from colab code. I mounted drive with

    from google.colab import drive
    drive.mount('/content/gdrive')

    I am generating and saving the frames with ffmpeg library calling a subprocess.

    subprocess.call(["ffmpeg", "-i", src, dest])

    or

    subprocess.check_call(["ffmpeg", "-i", src, dest])

    The files .jpg are uploaded in drive but not fast. And, at a certain point the synchronization stops, having executed the generation process on the whole dataset in colab.

  • ffmpeg 'av_seek_frame()' not work in bink video

    19 juillet 2020, par ghoflvhxj

    I trying to use ffmpeg, to play video in my game.

    


    when i open .avi file 'av_seek_frame()' work fine.
but if change to .bik file, it never work.
the function just return 0(which mean success) and seek to start.

    


    anyone who know about this problem ? :(
please tell me why...

    


    i uploaded sample player and video.
this use ffmpeg and call av_seek_frame to seek like my program.
check it please.
https://drive.google.com/file/d/1DVrX3EOzjxSfEA4EYpeSREaE2RLhB28Q/view?usp=sharing