Recherche avancée

Médias (91)

Autres articles (62)

  • 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 ;

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

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

Sur d’autres sites (11730)

  • ffmpeg Proper Command to Upscale Video

    19 mai 2014, par user3651716

    We have a problem with the watermark upon ffmpeg conversion to .mp4.

    We use a PHP KVS tube script, running CentOS & hopefully the latest ffmpeg version.

    If input video is in smaller resolution then watermark appearing in the output is too big, so video won’t properly re-size (upscale).

    Looking for a proper command that will upscale video resolution if this is smaller than 720px (width). Re sizing bigger videos work fine, but not smaller.

    So, we would always like 720px-1(dynamic height), no matter what is the input video resolution.

    Here is one of the command we have tried to use but it didnt work can you please provide the correct command to upscale videos 720px (width).


    This is the below command which we used but it has not worked
    _______________________________________________________-

    -vf "resize=720:trunc(ow/a/2)*2" -vcodec libx264 -threads 0 -acodec libfaac -ar 44100 -ab 128k -f mp4

  • ffmpeg Proper Command to Upscale Video

    19 mai 2014, par user3651716

    We have a problem with the watermark upon ffmpeg conversion to .mp4.

    We use a PHP KVS tube script, running CentOS & hopefully the latest ffmpeg version.

    If input video is in smaller resolution then watermark appearing in the output is too big, so video won’t properly re-size (upscale).

    Looking for a proper command that will upscale video resolution if this is smaller than 720px (width). Re sizing bigger videos work fine, but not smaller.

    So, we would always like 720px-1(dynamic height), no matter what is the input video resolution.

    Here is one of the command we have tried to use but it didnt work can you please provide the correct command to upscale videos 720px (width).


    This is the below command which we used but it has not worked
    _______________________________________________________-

    -vf "resize=720:trunc(ow/a/2)*2" -vcodec libx264 -threads 0 -acodec libfaac -ar 44100 -ab 128k -f mp4

  • FFMPEG settings for MP4 encoding with MPEG4 not x264

    13 mai 2014, par Papapouiki

    i use this command line on Windows to encode all my videos :

    ffmpeg -i MyInputFile.wmv -c:v mpeg4 -q:v 1 -c:a libvo_aacenc -q:a 100 MyOutPutFile.mp4

    All these originals videos are in .wmv and they have a bitrate of 1200kb/s.

    I have to use MPEG4 to read the encoded videos on Android / iOS. With x264 it doesn’t work, i have a black screen and audio only.

    The command line works fine, but my output files are too big ( bigger than .wmv files, but MPEG4 is better normally ). How can i change my settings ? Select the bitrate ? i’m trying this but it doesn’t work, the bitrate is still too high :

    ffmpeg -i TestBitRate.wmv -c:v mpeg4 -q:v 1 -b 500k -c:a libvo_aacenc -q:a 100 TestBitRate.mp4

    Thank you in advance for your help. :)