Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

  • Safer HTML5 support test for Opera 9.64, which barfs with not_enough_arguments error when using new Audio() instead of new Audio(null).

    15 septembre 2012, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Safer HTML5 support test for Opera 9.64, which barfs with not_enough_arguments error when using new Audio() instead of new (...)

  • How merge audio in video with outside audio using ffmpeg ?

    7 juin 2022, par Azornes

    I have 2 files :

    


      

    • video_orginal.ts,
    • 


    • sound_outside.wav
    • 


    


    video_orginal have own sound track. I wants to turn down the volume of the sound from video_orginal and next merge sound_outside.wav with sound in video_orginal to finally get a video with mixed audio. Now I execute 4 working commands :

    


    ffmpeg -i video_orginal.ts -map 0:a -c copy sound_from_video.wav -map 0:v -c copy video_clean.ts                            --exteract audio and video
ffmpeg -i sound_from_video.wav -filter:a "volume=0.3" sound_from_video_quiet.wav                                            --quiet sound
ffmpeg -i sound_from_video_quiet.wav -i sound_outside.wav -filter_complex amix=inputs=2:duration=longest sound_mixed.wav    --merge sounds
ffmpeg -i video_clean.ts -i sound_mixed.wav -c copy video_final.mkv                                                  --final merge video and sound


    


    It is possible to execute only one command which will do all these steps with as little encoding as possible ?

    


  • ffmpeg combine images and audio into video and loop through images until end of audio

    12 avril 2022, par george

    I have found this code to combine multiple images and one audio file into video, but what I want is the images to loop until the end of audio. So what I mean, if I have 5 images and each image is shown for 5 seconds, after 25 seconds show again the first image, second image etc and this will continue until the end of audio.

    


    ffmpeg -r 0.2 -i Scan-130802-%04d.jpg -i "1.mp3" \
       -vcodec libx264 -vf scale=1920:1080 \
       -crf 25 -preset slow -acodec copy video.mp4


    


    another problem I have is that with the above code the images appear horizontally flipped for some reason.