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 (111)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (13490)

  • Compile ffmpeg for WinRT with libvpx ?

    7 janvier 2018, par Sean O'Neil

    Following this guide :
    https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    Can anyone tell me if it’s possible to build and include libvpx into this ?

  • How to determine the best way to split video and merge it back ?

    6 novembre 2018, par Rami Alzebak

    Let’s say that I want to convert a Video to different resolution.

    The workflow is as follows :
    1- Splitting the video into n blocks
    2- Convert the resolution of the block
    3- Merge the blocks

    The reason why I am doing is to achieve the conversion process on parallel workers (not necessarily threads )

    The issue is I can’t determine what is the best number of blocks to split the video.

    E.g : When splitting a large video into 10 blocks it will reduce the total time .
    but when splitting a small one it may increase the total time .

    any hints or keys on the topic ?

  • FFmpeg split videos into smaller chunks of 15 second each with a stride of 10 seconds

    15 octobre 2022, par a mau5

    I want to split a 1 hour video into chunks of 15 seconds each. But after every 15 seconds I want to skip 10 seconds. For eg :- I want a clip from first 0-15 seconds save it, then skip 10 seconds, the second clip should be from 25-40 th second from the original video. Does someone know how to implement this using FFmpeg ?

    


    ffmpeg -I Vid.mp4 -f segment -segment_atclocktime 1 -segment_clocktime_offset 00:00:10 -segment_time 00:00:15 -reset_timestamps 1 output_%03d.asf

    


    This command is not working as expected. I don't want to implement this in a for loop, but in a single pass