Recherche avancée

Médias (91)

Autres articles (33)

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

  • ffmpeg is working in terminal but not in php

    31 août 2018, par Gaurav kakkar

    I have installed ffmpeg using Ubuntu,

    sudo apt-get install ffmpeg

    ffmpeg is installed on root "/usr/bin/ffmpeg".

    It’s working fine in the terminal, but when I execute that using php i don’t get any output.

    shell_exec(/usr/bin/ffmpeg -y -i ./upload/1535531595first.mp3 -i ./upload/1535531595second.mp3 -filter_complex "[0:0][1:0] amix=inputs=2:duration=longest" -c:a libmp3lame ./download/1535531595outputnow1.mp3)

    and using this command in "opt/lampp/htdocs/project-Name/sub-directory/test.php" file.

    Any help will be appreciatable. Thanks in Advance.
    find the attachment cmd terminal working fine but for php not working

  • Creating App from Terminal code

    11 août 2014, par user3084141

    Good evening,
    I want to create an app that demuxes Audio from a Videofile with ffmpeg,that uses the following Terminal-code

    "ffmpeg location" -i "Source.file (Video.mp4)" -vn -ss "time" -t "sec" -acodec copy "Destination.file ("Audio.m4a")"

    I couldn’t find a ffmpeg gui for OSX that would let me do that.
    The Programm should ask for a Source file, a destination, start time and length.
    ffmpeg could be integrated or specified.

    Maybe it’s easier to Automate a Service.

    I’m sorry the I don’t have any experience on mac and automating Terminal commands.
    I have to start from 0 only a little bit visual basic experience.

  • How To Run Multiple Code ffmpeg in Macbook Terminal Using bat file ?

    26 juillet 2021, par ChhengRavy

    I have a problem to run bat file in Macboook Terminal. I created file bat that has code below.

    


    ffmpeg -i input1.mp4    -vf hflip -c:a copy output1.mp4
ffmpeg -i input2.mp4    -vf hflip -c:a copy output2.mp4
ffmpeg -i input3.mp4    -vf hflip -c:a copy output3.mp4


    


    If I run that bat file in window Command Promt I will get three outputs(output1,output2,output3). It work fine.

    


    But If I run it in terminal Mackbook by drag that file to terminal I get only output3. I don't know why in Macbook It works only the last code.

    


    Please Anyone knows about this help me. I was stuck a few days already.

    


    Thank you so much for your help.