Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (35)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (7254)

  • 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

    


  • Overlaying alpha images on a video using ffmpeg

    10 mai 2016, par neuro_sys

    I have the following ffmpeg-cli command which does not produce the described effect in documentation. Could this be a bug, or I have something wrong with the command.

    ffmpeg \
       -y \
       -i small.mp4 \
       -i monkey/monkey_%04d.png \
       -filter_complex "[0:v][1:v]overlay=enable='between(t,1,5)'[out1]" \
       -map '[out1]' \
       output.mp4

    I expect it to overlay the #1 stream on top of #0 between seconds 1 and 5.

    You may download the test tarball from this link :

    It includes assets for the test case.

    The build I tried with :

    • ffmpeg-3.0.2-64bit-static (available online)