Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (38)

  • 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 (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • 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 (5785)

  • Discard images from a group of similar images

    31 mai 2018, par Saah

    I am generating images (thumbnails) from a video every 3 seconds. Now I need to discard/remove all the similar images. Is there a way I could this ?

    I generate thumbnails using FFMPEG. I read about various image-diff solutions like given in this SO post, but I do not want to do this manually. How and what parameters should be considered that could tell if a particular image is similar to other images present.

  • What ffmpeg command will produce a video compression similar to Instagram's compression ?

    8 octobre 2018, par user592419

    I am looking to take a video and compress it in a way that is similar to the compression that Instagram uses. What ffmpeg command can do this ?

  • FFmpeg similar command get difference result about the video duration

    13 juin 2019, par ahxbdta

    when I use this cmd

    ffmpeg -i video.mp4 -i music.mp3 -c:v copy -shortest outg.mp4
    ffmpeg -i outg.mp4 2>&1 | grep Duration

    I get

     Duration: 00:00:23.13, start: 0.000000, bitrate: 805 kb/s

    but when i use

    ffmpeg -i video.mp4 -i music.mp3 -shortest outg.mp4
    ffmpeg -i outg.mp4 2>&1 | grep Duration

    I get

     Duration: 00:00:23.15, start: 0.000000, bitrate: 780 kb/s

    why the duration is different ?