Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (58)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8246)

  • FFmpeg concat images and audio what can't control framerate

    27 septembre 2016, par kensonLiang

    Good day !
    I want to concat images and audios to a video.and I found the command like that :

    ffmpeg -ss 00:00:00 -t 00:00:10 -i a.mp3 -ss 00:01:01 -t 00:00:10 -i b.mp3 -thread_queue_size 1024 -r 3 -i C:\f1\im\%08d.jpg -filter_complex "[0:a] [1:a] concat=v=0:a=1 [outa];movie=im/%08d.jpg,fps=3 [img]" -map [outa] -map [img] output.mp4

    It’s work.but whatever I set the fps and -r,the video stream will complete in 1second,and the audio will playing with the last frame of the video after the first second.
    help me,please !

  • Split videos to chunks using Rails and streamio-ffmpeg

    29 septembre 2021, par Nasser FN

    I've followed this tutorial both parts 1 & 2,https://www.randygirard.com/how-to-create-a-video-upload-platform-using-ruby-on-rails-part-2/

    


    so now I am able to upload videos, convert them to mp4 and display them to the user, but the problem is I want to split the uploaded videos to chunks of 30 seconds each and

    


    return them to the user so he/she can use them for whatsapp status.

    


    This' my main goal !

    


    As I've mentioned earlier, i followed the tutorial above, all I need is how to integrate

    


    and use https://github.com/streamio/streamio-ffmpeg in my rails code for splitting videos

    


    to chunks. Thanks !

    


  • Metadata in MP4 audio tracks

    4 avril 2018, par Rigsel

    I have a video with multiple audio tracks and I’d like to set metadata to the audios like for the translator name.

    I managed to insert a Title and Language in MP4 audio tracks using FFMPEG, but I couldn’t find much documentation on metadata for audio tracks.
    Are there better tools than FFMPEG for this ?

    What metadata can I save in the audio tracks of an MP4 video ?
    I might change to MKV or TS containers if they allow more freedom.

    Thanks and keep coding !