Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (111)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (7282)

  • Lego Mindstorms RSO Format

    14 juillet 2010, par Multimedia Mike — General

    I recently read a magazine article about Lego Mindstorms. Naturally, the item that caught my eye was the mention of a bit of Lego software that converts various audio file formats to a custom format called RSO that can be downloaded into a Mindstorms project to make the creation output audio. To read different sources, one might be left with the impression that there is something super-duper top secret proprietary about the format. Such impressions do not hold up under casual analysis of a sample file.

    A Google search for "filetype:rso" yielded a few pre-made sample that I have mirrored into the samples archive. The format appears to be an 8-byte header followed by unsigned, 8-bit PCM. More on the wiki. If FFmpeg could gain an RSO file muxer, that would presumably be a heroic feat to the Lego hacking community.

  • ffmpeg streaming from local drive to RTSP gives black video in some streaming services :(

    27 avril 2022, par John R

    This question if about ffmpeg flags or options.....

    


    example, this ffmpeg command work perfectly well in mux.com but NOT in livepeer.com

    


        ffmpeg -re -i 1.webm -threads 4 
-c:v libx264 -movflags +dash -preset fast 
-tune zerolatency -pix_fmt yuv420p -c:a aac 
-b:a 192k -ac 2 -profile:v high -b:v 1369k 
-r 30 -g 60 -bufsize 969k 
-f flv "rtmp://rtmp.livepeer.com/live/streamkey"


    


    enter image description here

    


    QUESTION : I'm I missing something ???

    


    I try -f mpegts => I get black video in the stream dasboard

    


    I'm stuck...

    


  • How to use ffmpeg to batch split and batch convert in d :/ drive and save output file in e :/ drive ?

    10 juillet 2019, par Bhimesh C. Acharya

    i am trying to use ffmpeg where i have a folder in (d :/ ) drive which contains nearly 100 videos as (.mp4) but i need specific time from (22 sec to 1 min 13 sec ) of all videos and need to save the converted file in (.wav) using ffmpeg file in (e :/) drive songs folder and delete the converted and regularly check for any file in (d :/) drive.

    After research i have found a code to split as

    echo off
    mkdir new_folder
    for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec copy -b:a 192k -vn -ss 0:00:22 -t 0:01:13  "new_folder\%%~na.wav"
    pause