Recherche avancée

Médias (91)

Autres articles (13)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (2491)

  • How can I download a video with url beginning with blob:https://…

    11 août 2017, par iMax

    I would like to know if it is possible to download a video from a URL beginning with blob :

    blob:https://www.xyz123…

    i would prefer a terminal solution (ffmpeg ?, youtube-dl ?). but i have not found anything on the world wide web.

    Again : I have the url of the video stream, which looks like the above. How can I download the complete video ?

    Update

    Ok. I now found a webpage which allowed me to download the video file I wanted :
    https://video-download.online/

    But I am still wondering if there is a Terminal solution for downloading video with blob-URL (like in arte mediathek [ example arte ] or in zdf mediathek [ example zdf ]).

    Does nobody know how to do it ?

  • Twitch Stream as input for ffmpeg

    20 mars 2019, par user2361174

    My objective is to take a twitch video stream and generate an image sequence from it without having to create an intermediary file. I found out that ffmpeg can take a video and turn it into a video and turn it into an image sequence. The ffmpeg website says that it’s input option can take network streams, although I really can’t find any clear documentation for it. I’ve searched through Stack Overflow and I haven’t found any answers either.

    I’ve tried adding the link to the stream :

    ffmpeg -i www.twitch.tv/channelName

    But the program either stated the error "No such file or directory" :

    or caused a segmentation fault when adding https to the link.

    I’m also using streamlink and used that with ffmpeg in a python script to try the streaming url :

    import streamlink
    import subprocess

    streams = streamlink.streams("http://twitch.tv/channelName")
    stream = streams["worst"]
    fd = stream.open()
    url = fd.writer.stream.url
    fd.close()
    subprocess.run(['/path/to/ffmpeg', '-i', url], shell=True)

    But that is producing the same error as the website URL. I’m pretty new to ffmpeg and streamlink so I’m not sure what I’m doing wrong. Is there a way for me to add a twitch stream to the input for ffmpeg ?

  • FFMPEG - How to setup volume when merging two audio streams

    6 octobre 2014, par N3sh

    I just recently entered the magic and scary world of FFMPEG and, although I found quite a lot of guides online, I need help for my current problem.

    I am merging only audio files and I would like to be able to select their volume.

    Here is my current code for merging 2 files :

    ffmpeg -i test\audio00.mp3 -i test\audio01.mp3 -filter_complex amerge
    -c:a libmp3lame -q:a 0 test\output_overlay.mp3

    I tried the following code, extracted from another answer here on SO (the User was also handling video), but it doesn’t work for me :

    ffmpeg -i test\audio00.mp3 -i test\audio01.mp3 -filter_complex "[0:a]volume=0.9[a1];  
    [1:a]volume=0.781250[a2]; [a1][a2]amerge,pan=stereo:c0code>

    I got this error :

    [AVFilterGraph @ 030fa8c0] The following filters could not choose their formats:
    Parsed_amerge_2 Consider inserting the (a)format filter near their input or output.

    Is there a simple way to change the volume for the two streams (even for just the second one, it’s the background music) with FFMPEG ?

    P.S. Also, is it possible to have some sort of ’preview’ before actually rendering the file ?