Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (49)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • How to set Avconv constant bitrate to output flv file ?

    5 novembre 2012, par ispasov

    I am trying to encode a flv file which has bitrate 512k. I have created the folowing command :

    avconv -i input_file.mpg -f flv -c:v flv -b:v 512k -c:a libmp3lame -b:a 64k -ar 44100 -s 400x300 ouput_file.flv

    During the encodding the terminal shows higher bitrate - from 650k falling to 580k.
    After the file has finnished encodding I can't see in it's properties the bitrate - it is N/A.

    I have tried -minrate and -maxrate options but no result also.

    Can someone help me with that ?

  • How to make ffmeg automatically overwrite a file with the same name ?

    27 janvier 2021, par tkinterpy

    I have a script that downloads audio and video from a youtube link,
then ffmpeg merges them together — but if I want to merge again, it will output a file with the same name and it will ask me in the terminal :

    


    enter image description here

    


    How can I make it so it automatically overwrite ?

    


  • merge audio and video with ffmpeg doesnt work correctly

    3 février 2023, par Iman Amani

    I have ubuntu 20.04 and in past days I did this job(merge video and audio) well in terminal and with ffmpeg :

    


    ffmpeg -i input.mp4 -i input2.mp3 -c copy output.mp4

    


    so fast I have recived output.mp4, but now I tried this one and get output without any sound !

    


    I try another ways to merge this ones(also with ffmpeg) but there are no diffrent...