Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (31)

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

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

  • ffmpeg limit audio sample rate

    8 mars 2019, par Ben Schmidt

    in order to save space on my home NAS I want to convert plenty of different videos to more efficient codes.

    Is there a way to limit the sampling rate to 44 100Hz in order to convert 48 000Hz to 44.1kHz but to keep Videos with 22 050Hz at that sampling rate ?

    The only solution I came up with is to use something like medainfo or "mplayer -vo null -ao null -frames 0 -identify $1 | grep ID_AUDIO_RATE" to get the sampling rate and decide what option to set.

    Is there a smarter, more elegant way ?

    Thanks in advance
    Ben

  • ffmpeg encode tiff to h265- error At least one output file must be specified

    8 février 2018, par Orel Pechter

    I need to convert tiff images into h265 file.
    I’m using the following command :

    ffmpeg -y -framerate 30 -i input.tiff -c:v libx265 -x265-params no-open-gop=1:min-keyint=4:keyint=4:bitrate=60 -preset medium -f ssegment -segment_time %ST% "outputfile.265" 2>&1

    I get an output of "error At least one output file must be specified".
    What am i missing ?
    Is there anything i need to do to activate my use of 265 ?
    Im using ffmpeg vs.3.4.1

    Thanks in advance !

  • Muxing only audio into MP4 ffmpeg failed

    9 août 2015, par Kaidul Islam

    I am trying to write audio encoded packets into a MP4 container.I have followed this sample code and instead of creating dummy frame, I am feeding real G.711 PCMU encoded frame into ffmpeg. The writing seems working and file size is increasing, but the mp4 is not playing using ffplay or in VLC player.

    Thanks in advance !