Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (56)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

  • How can I trim mp3 file ? [duplicate]

    6 mars 2016, par devzone

    Possible Duplicate :
    Crop MP3 to first 30 seconds

    I’m using this class http://www.phpclasses.org/package/5275-PHP-Manipulate-MP3-audio-files.html but I get an error, I want to create a website that sell a music online I would like to have a preview like about 15-20 seconds how to this ? Any help ?
    Thank you.

  • Delay on FFmpeg Watermark

    7 octobre 2020, par Tevin Mosley

    I use a .bat file to watermark videos I upload to my website. Here is the code :

    


    set ffmpeg="C:\ffmpeg\bin\ffmpeg.exe"
set ffprobe="C:\ffmpeg\bin\ffprobe.exe"

setlocal disabledelayedexpansion
for %%a in ("H:\4 - Watermark Process\Before\*.mp4") do (
    for /F "delims=" %%I in ('
        ffprobe -v quiet -show_entries stream^=width -of csv^=p^=0:s^=x "%%a"
    ') do (
        ffmpeg -i logo.png -y -v quiet -vf scale=%%I*0.25:-1 scaled.png
        ffmpeg -i "%%a" -vf "movie=scaled.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h [out]" "H:\4 - Watermark Process\After\%%~na.mp4"
    )
)

pause 10


    


    Thing is I want it to start the watermark 2/3 the way through the video instead of watermarking the full video.

    


    Does anyone know how to change my code to do that ?

    


  • web based audio converter

    21 mai 2012, par Zoidberg

    I am building a rails based website with audio streaming component.

    and I need some insight.

    my search revealed that, the most preferred audio format for such a case is AAC with JPlayer

    converting to AAC I tried to run SoX with Lame and libmad, i was not able to go from mp3 to aac.

    now I'm trying to use the FFMPEG with faac enabled.

    the idea is to upload and convert tracks to aac as a single process.

    is my setup flawed ? the FFMPEG the way to go ? all insights are welcomed