Recherche avancée

Médias (91)

Autres articles (45)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (6430)

  • Redirecting ffmpeg result into another file

    22 juin 2015, par Enkri_

    I’m trying to get the size of an input video using ffmpeg, below is the code that I use, what I’m trying to do is to first store the result into a txt file and then do some parsing to get the size of the video :

    $ ffmpeg -i TheNorth.mp4

    The terminal says "At least one output file must be specified"
    Then I tried this :

    $ ffmpeg -i TheNorth.mp4 result.txt

    The terminal says "Unable to find a suitable output format for ’size.txt’"

    So how could I get the result and save it to the specified file ?

  • Redirecting ffmpeg result into another file

    9 mai 2019, par Enkri_

    I’m trying to get the size of an input video using ffmpeg, below is the code that I use, what I’m trying to do is to first store the result into a txt file and then do some parsing to get the size of the video :

    $ ffmpeg -i TheNorth.mp4

    The terminal says "At least one output file must be specified"
    Then I tried this :

    $ ffmpeg -i TheNorth.mp4 result.txt

    The terminal says "Unable to find a suitable output format for ’size.txt’"

    So how could I get the result and save it to the specified file ?

  • Use ffprobe on Sagemaker Jupyter Notebook : /bin/sh : 1 : ffprobe : not found

    2 juillet 2020, par Guu

    I need to use FFprobe to get the metadata(the orientation of the video) of videos on SageMaker Studio. Even I installed FFmpeg and FFprobe via pip install, the notebook doesn't recognize the packages.

    


    /bin/sh: 1: ffprobe: not found

    


    It is tricky since I've already tried to install them on System terminal and it worked, but it still doesn't work on the Image terminal or Jupyter Notebook.

    


    Is that because of the dependencies ? I've checked other ways to get the metadata but couldn't find one working. I could get simple metadata via hachoir-metadata but it didn't give the orientation. Any advice is welcomed. Thanks.