Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (78)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7624)

  • Simple example of using ffmpeg to convert a movie into a format that can be viewed on Apple products

    16 janvier 2014, par ensnare

    I have a directory of AVI and MOV movies taken from my digital camera. I'd like to write a Python script to go through them, and for every AVI or MOV it finds, generate a file in place that can be viewed on Apple products (iPad, Apple TV, etc ...). My videos are 1080p, and I'm interested in preserving as much of the original quality as possible.

    Any examples of how to do this with ffmpeg ? Specifically, flags to pass to the executable ? Would I want to do a one or two-pass encoding (what's the difference ?)

    I'm hoping to do the scripting part in Python.

  • What movie formats and resolutions should be generated to ensure cross-browser/platform compatibility ?

    31 août 2012, par ensnare

    I'm looking to generate web videos from movies taken with my digital camera. What formats should I generate, and at what resolution and bitrate to ensure playback on mobile and desktop devices ?

    Here's what I was thinking :

    Input format : AVI, MOV

    Output format : webm, ogv, mp4
    Output resolutions : 1080p, 720p, 320p

  • Extracting Frames From a Movie file using python

    20 janvier 2014, par user3213576

    I've been trying to extract frames from a video file, and I've been using the following code as a test before I try to work with my own file. I get an error having to do with an invalid literal :

    import os, sys
    from PIL import Image
    a, b, c = os.popen3("ffmpeg -i test.avi")`
    out = c.read()

    dp = out.index(" ")
    duration = out[dp+10:dp+out[dp:].index(",")]
    hh, mm, ss = map(float, duration.split(":"))

    Error :

    Traceback (most recent call last):
     File "", line 1, in -toplevel-
       hh, mm, ss = map(float, duration.split(":"))
    ValueError: invalid literal for float(): cognized as an internal or external command

    How do I fix this error ?