Recherche avancée

Médias (1)

Mot : - Tags -/stallman

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)

  • How to remove silent audio clip from a video through FFMPEG or any other method(moviepy) ? No answers have the exact answer

    16 janvier 2018, par Shantanu Kumar

    How to remove silent audio clip from a video through FFMPEG or any other method (moviepy) ? The silent audio part includes ... buffer part and repeated frames...Just want video to be more interactive

  • ffmpeg, how to extend video, the same clip multiple times concat

    22 janvier 2018, par pc8181

    i want to extend the video clip to fixed 200 seconds even the clip is low duration in VB.Net. if video clip is 28-seconds then want to repeat concate the same clip and trim 200 seconds how to do this ?...

    m trying something but i could not do how to repeat concat the same clip ...

     cmd = String.Format("{0} -i {1} -c copy -ss {2} -t {3} -an -y -map 0  
     {4}.m2ts",ffexe, inf, inT, ouT, ouF )
  • ffmpeg not generating exact duration clip

    16 février 2018, par Nitishkumar Singh

    I am trying to generate exact duration clip from different HD videos using ffmpeg3. The clip format and video format will be same. To do so, I am using, below command

    ffmpeg -ss 0:14:42.000 -t 0:00:02.000 -i source.mp4 -codec copy -y output.mp4

    But command is not generating exact duration clip. The clip duration is always more than the given duration. I can use encoding and decoding step for ffmpeg, but it’s very time consuming process. Any suggestions, how the problem could be solved ?