Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8056)

  • ffmpeg encoding outputs a file with incorrect metadata

    20 juillet 2013, par user2554615

    I use ffmpeg to convert a flv file to an mp3 file like so in bash :

    ffmpeg -i path/to/file.flv path/to/output.mp3

    say the flv is 5 minutes long, the output file is supposedly say, 3 minutes long. however when played back it will reach the 3 minute mark and keep playing (as it should) the full length. when i try to skip to a portion of the song it only skips by fractions of the time it should, take for example if the video is labeled as 3 minutes long and i skip to the end, it will actually be playing the area that is about 30 seconds in. why is it doing this and how do i fix it ? is there any other utility that i can use that will effectively convert .flv and .mp4 files to .mp3 or .wav in a loss-less fashion while maintaining the correct metadata, preferably for windows ? perhaps an API i can use in java or c++ ?

    PS : i ask here because it relates to a command line utility and i assume that the the solution will relate to the options used in the command.

    PPS : i am using the ffmpeg that comes with puppy linux (precise) 5.4

  • video orientation detection in bash

    30 décembre 2020, par Miati

    I need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.

    



    if [ "$v_orient" ==  "landscape" ]
  then
    ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
  else 
    ffmpeg -i file.mp4 file.ogv
fi


    



    I've looked in ffmpeg online documentation and googled around,

    



    I've attempted exiftool

    



    exiftool -Rotation -Rotate file.mp4


    



    However, this outputs Rotate : 90 for both landscape & portrait videos I have.

    




    



    How can I detect the video orientation in bash ?

    


  • video orientation detection in bash

    30 décembre 2014, par Miati

    I need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.

    if [ "$v_orient" ==  "landscape" ]
     then
       ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
     else
       ffmpeg -i file.mp4 file.ogv
    fi

    I’ve looked in ffmpeg online documentation and googled around,

    I’ve attempted exiftool

    exiftool -Rotation -Rotate file.mp4

    However, this outputs Rotate : 90 for both landscape & portrait videos I have.


    How can I detect the video orientation in bash ?