Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (60)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9173)

  • avdevice/decklink : 10 Bit support for Decklink input device

    18 janvier 2015, par Georg Lippitsch
    avdevice/decklink : 10 Bit support for Decklink input device
    

    Example to capture video clip at 1080i50 10 bit :
    ffmpeg -bm_v210 1 -f decklink -i ’UltraStudio Mini Recorder@11’ -acodec copy -vcodec copy output.avi

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/decklink_common_c.h
    • [DH] libavdevice/decklink_dec.cpp
    • [DH] libavdevice/decklink_dec_c.c
  • Cut detection with ffprobe

    2 février 2015, par cronk

    I’m trying to detect cuts between shots with ffprobe. I use the following command :

    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=test_clip.avi,select=gt(scene\,.4)" > test_clip_cuts.txt

    It works just fine, there’s no question. But now I want to detect the cuts in certain range only. Let’s say from 3 to 8 seconds. How I could do that ?

    I tried to use -read_intervals 3%8 but it gave me an error :

    Could not seek to position 3000000: Invalid argument
    Could not read packets in interval id:0 start:3 end:8

    Command -read_intervals %+3 (read from the very begining to 3rd second) works, but in weird way - it detects cuts up to 4th second (and over, I guess).

    So I’m confused. What are those "intervals" and how to use them ? Is it possible to set the range in regular seconds ?

    Just in case here is my test clip https://yadi.sk/i/nd-c12mYeQ2nb

  • How can I get the volume of sound of a video in Python using moviepy ?

    24 janvier 2015, par evil_inside

    I want to get the volume of sound of a video so I use the following :

    import numpy as np # for numerical operations
    from moviepy.editor import VideoFileClip, concatenate

    clip = VideoFileClip("soccer_game.mp4")
    cut = lambda i: clip.audio.subclip(i,i+1).to_soundarray(fps=22000)
    volume = lambda array: np.sqrt(((1.0*array)**2).mean())
    volumes = [volume(cut(i)) for i in range(0,int(clip.audio.duration-2))]

    But I get these errors :

    Exception AttributeError: "VideoFileClip instance has no attribute 'reader'" in <bound method="method" of="of" instance="instance" at="at" 0x084c3198="0x084c3198">> ignored

    WindowsError: [Error 5] Access is denied
    </bound>

    I am using IPython notebook and Python 2.7.
    I assume something doesn’t have the appropriate permissions. I have changed run this program as an administrator for ffmpeg.exe, ffplay.exe, ffprobe.exe.