Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (42)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4312)

  • avconv : make the ASCII flow charts narrower to fit onto TTY

    7 février 2014, par Timothy Gu
    avconv : make the ASCII flow charts narrower to fit onto TTY
    

    These charts in man page are currently destroyed.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] doc/avconv.texi
  • Making volume adjustments at precise time with ffmpeg -filter_complex

    25 février 2023, par a1s2d3f4

    I am using the following command to mute parts of the audio file with ffmpeg :

    &#xA;

    ffmpeg.exe -y -i "C:\temp\inputfile3.wav" -filter_complex_script "C:\temp\filter_complex_cmds.txt" "C:\temp\outputfile3.wav"&#xA;

    &#xA;

    Inside filter_complex_cmd.txt I have :

    &#xA;

    [0]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=&#x27;if(between(t,0.95,1.05),0*(t-0.95) &#x2B; 0,1)&#x27;:eval=frame,volume=&#x27;if(between(t,1.15,1.25),0*(t-1.15) &#x2B; 0,1)&#x27;:eval=frame,volume=&#x27;if(between(t,1.41,1.49),0*(t-1.41) &#x2B; 0,1)&#x27;:eval=frame,volume=&#x27;if(between(t,2.10,2.35),0*(t-2.10) &#x2B; 0,1)&#x27;:eval=frame,volume=&#x27;if(between(t,2.75,2.85),0*(t-2.75) &#x2B; 0,1)&#x27;:eval=frame, etc. x1000...&#xA;

    &#xA;

    You get the idea - many, many calls to reduce volume at specific times.&#xA;However, when I look at outputfile3.wav, the volume is not reduced from 0.95000 to 1.05000 seconds, but instead from 0.952018 to 1.068118 (i.e. off by 2 and 18 milliseconds respectively) and not from 1.150000 to 1.250000 seconds but from 1.160998 to 1.253878 milliseconds, etc. It can sometimes be off by as many as 20 milliseconds.

    &#xA;

    Can anyone tell me what's going on and what to do to make it precise ?

    &#xA;

    Also, while I can reserve it for a separate question, but I also want to be able to find a fade out/fade in commands that would make this change to and from silence a bit more smooth by dialing it down and up over the course of 20 milliseconds around my "volume 0" times.

    &#xA;

  • How to mix 3 audio files or more by ffmpeg and set volume each file

    20 février 2017, par Kwan N

    I use this code. But it’s not success :

    ffmpeg -f lavfi -i "amovie=1.mp3,volume=1" -f lavfi -i "amovie=2.mp3,volume=0.3" -f lavfi -i "amovie=3.mp3,volume=1" -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 output.mp3