Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (40)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (4928)

  • ffmpeg : how to extract multiple clips from a movie at once

    24 septembre 2019, par Ginso

    Now I can extract a clip from a movie using

    ffmpeg -i movie.mp4 -ss 01:05:10 -t 00:01:30

    now, I want to extract a few clips from one movie and especially those late in the movie take very long. I guess ffmpeg has to decode the whole movie up to that clip. Is there a way to extract all clips with one command, so that ffmpeg has to go through the movie only once ? The clips don’t overlap

  • Trying to flip a movie with ffmpeg hflip vplip fails

    7 août 2019, par S.T

    I am trying to flip a movie with
    hflip
    and
    vflip

    and it’s creating an empty movie in some of the movies i converted (some of them succeeded).

    i tried to convert all kind of movies and i don’t know if this is the reason but maybe it related if the movie is in landscape or portrait ?
    This is the command i use :

    ffmpeg -i INPUT -vf hflip -c:a copy OUTPUT

    expected to see the movie flipped as i wanted in my command.

    Thanks.

  • Changing the background color of the movie while using tpad and adelay

    1er août 2019, par S.T

    i want to change the background color of a movie while using tpad and adelay commands. it is now black ( until the movie starts).

    the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the tpad that needs to be change).

    -filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
     [0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000k

    the 5 seconds that the movie is in its "waiting mode" needs to be changed from default black to some other color. Thanks.