Recherche avancée

Médias (91)

Autres articles (48)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5750)

  • ffmpeg, stereo + 5.1 surround, and YouTube's "Recommended upload encoding settings"

    31 juillet 2021, par CoreyVidal

    I'm trying to make sense of something YouTube has listed on their recommended upload encoding settings for the best possible quality. Here's the link : https://support.google.com/youtube/answer/1722171#zippy=%2Caudio-codec-aac-lc

    


    Specifically this line :

    


    

      

    • Channels : Stereo or Stereo + 5.1
    • 


    


    


    I'm Googling for "Stereo + 5.1" and anything to do with ffmpeg but I can't seem to find much of anything.

    


    I have trailers with surround audio I need to export for a client for YouTube.

    


  • FFMPEG Streaming USB Webcam Video with Music Playlist

    3 février 2020, par 556duckvader

    Hello I am setting up streaming box that will be using a USB webcam as my video source and I am wanting to add in background audio to the live streams. I am wanting to do this by specifying a playlist and have it play through the audio files and then loop back once the playlist is finished. I have the ffmpeg command that allows me to stream the USB webcam and I can get one audio file to play but I can’t get seem to figure out how to get the playlist to work. Any help would be great. Below is what I have that is working.

    ffmpeg -f v4l2 -s 1280x720 -i /dev/video0 -i /home/pi/twitchMusic/ES_Arrows-MarVei.mp3 -c:a copy -c:v libx264 -r 24 -rtbufsize 1500k  -preset ultrafast -crf 23 -force_key_frames 'expr:gte(t,n_forced*2)' -minrate 2200k -maxrate 2200k -pix_fmt yuv420p -b:v 2500k -bufsize 2200k -f flv rtmp://live.twitch.tv/app/TWITCH_KEY

  • How do install ffmpeg in android for youtube-dl

    21 novembre 2019, par Wasp Nesser

    I have got a python code for downloading a video (from youtube) and converting to mp3. I used youtube-dl for these. Python code works in computer. But that error occurred in my android :

    youtube_dl.utils.DownloadError: ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one. [Program finished]

    I couldn’t find how to install these requirments in android . I use application called pydroid3 for executing python codes , installing python libraries and terminal staff. I tried to install ffmpeg and ffprob libraries with pip .But it didn’t helped me. After I tried to execute

    adb shell pm install ffmpeg

    And It didn’t helped me to.

    This is my code :

    import youtube_dl
    import os
    outtmpl = "%(playlist_title)s-%(playlist_uploader)s /%(playlist_index)s %(title)s-%(uploader)s.%(ext)s"
    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       },
           {'key': 'FFmpegMetadata'},
       ],
       'outtmpl' : outtmpl,
    }

    url = input("Enter url : ")

    with youtube_dl.YoutubeDL(ydl_opts) as ydl:

       ydl.download([url])