Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (10652)

  • Using ffmpeg ffprobe with Visual C++

    11 juillet 2015, par astracat111

    I have the following command line that gives me the duration of a video file :

    ffprobe.exe -i Video.mp4 show_entries format=duration -v quiet -of csv="p=0"

    When I run this, I get back the duration of my video successfully, running it from a command prompt. Now, I’m kind of a beginner with C++, so I’m not sure how I could get that duration to be put into a float inside of my program. I’ve looked through a lot of articles and question and answer forums online and I’ve found possible answers with...using stdout/stdin to grab the information...? I’m not sure.

    My strategy right now is to use CreateProcess() to run the process, then WaitForSingleObject(), then somehow use some command to grab the output data from the ffprobe process. Perhaps the data I’m looking for can be retrieved through the CreateProcess() function ? I feel like I’m very close, but I’m in serious need of help with this...

    As a side note, since I’m using Visual C++ Express 2010, I do not have access to MFC.

    If anyone could lead me in the right direction to this information it would be greatly appreciated.

  • Cross-compile ffmpeg for arm64 on x64 host machine (macOS) ?

    13 juin 2021, par waldenCalms

    I need to cross-compile ffmpeg for arm64 (M1 Macs, to be specific) from my x64 host Mac. I am able to build ffmpeg for my host architecture without issues (i.e. I have a working x64 build script and all the pre-requisites installed), but now need to modify my script to build for arm64.

    


    First of all, is this even possible / supported ? If so, how ?

    


    The official ffmpeg compilation guide doesn't mention anything helpful. I have looked at several code snippets online and tried using the following configure arguments, with no luck :

    


    --enable-cross-compile \
--arch=arm64 \


    


    I get the following error :

    


    libavutil/aarch64/bswap.h:38:13: error: invalid instruction mnemonic 'rev'


    


  • FFMPEG Invalid Data

    10 mai 2021, par D0n

    I had a python script that runs ffmpeg processes against pre recorded files. My commands worked before but now I am getting an Invalid data error.

    


    Here is my command.

    


    ffmpeg -i black_video.mpeg -vf "blackdetect=d=2:pix_th=0.00" -an -f null -

    


    Here is my Error.

    


    black_video.mpeg: Invalid data found when processing input

    


    I am also running this convert command to the video files.

    


    convert black_video.mpeg -colorspace HSL -channel S -separate -format '%M avg sat=%[fx:int(mean*100)]\n' info:

    


    Nothing I found online was relevant to my issue. The commands were working before but now they aren't which is really odd to me.