Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (7908)

  • Amazon S3 : how to combine all images into a video ?

    17 mars 2015, par scientiffic

    I’m in my Rails app, I enable users to upload images, which get processed using ffmpeg to create a video slideshow.

    I have this working locally, but am wondering how to do this when deploying the app using Heroku. In particular, I know Heroku has limited storage and has a read-only filesystem, so using Carrierwave without S3 or an external storage option doesn’t seem like an option.

    But how would I run a task like the following using S3, where I combine all images into a video ?

    The ffmpeg command is

    ffmpeg -r 5 -i https://s3.amazonaws.com/[]/uploads/image/image_file/26/img%03d.jpg output.mp4 -y

    And the AWS "folder" contains the following :
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img001.jpg
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img002.jpg
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img003.jpg

    When I try to do the following, I get an error with ffmpeg not knowing what to do with :

    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img%03d.jpg

    Note, this whole video compilation process works fine for me locally, so I know in theory it should work.

  • FFmpeg mp4 compression

    22 septembre 2016, par Nikita Pronchik

    I’m developing photo and video social network ( partially like instagram ). And i’m using ffmpeg for mp4 to mp4 file size compression. I achieved 3 time scale factor for file size ( from 13 mb to 2,5 mb ) but very stupidly - 3 times converting output files by the following command-line string :

    ./ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4

    I’m a newbee in video-audio codec theory, so i completely lost audio while such compression. So my question is - where is audio ? Which option should i use ? Thanks in advance !

  • How to convert .yuv to .mp4 without compression

    27 décembre 2019, par johanna

    Videos were coded with various codecs such as x265, VCC etc. The coded videos have .yuv format. When I used MP4Box in order to create the segments and the corresponding MPD, using the following code :
    MP4Box -dash 4000 -frag 4000 -rap -segment-name segment_ input.yuv was found that MP4Box accept only .mp4 files as input. Tried to convert them with ffmpeg, but we have further compression in the files, something that we want to avoid. How can files can be converted from .yuv to .mp4 without further compression ?