Recherche avancée

Médias (91)

Autres articles (108)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (38228)

  • Cannot install ffmpeg [closed]

    22 mai 2022, par Ashok M

    I'm trying to learn video processing using Python. For that, I tried installing one of two packages using Homebrew : ffmpeg and ImageMagick. After upgrading and updating Homebrew, I ran the command : brew update && brew install ffmpeg. Below is the error I got before some downloads started :

    


    ERROR :

    


    xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun


    


    After all downloads completed, another error came up as shown below :

    


    Error: python@3.9: the bottle needs the Apple Command Line Tools to be installed.
  You can install them, if desired, with:
    xcode-select --install
You can try to install from source with:
  brew install --build-from-source python@3.9
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.


    


    I'm on MacOSx with Python 10.4 installed. Don't if that's making any difference to the installation. Thanks for any help.

    


  • FFMpeg Android : merge images with audio for specific duration

    3 juillet 2018, par Killer

    I have been working on FFMpeg from past 7 days. I am required to create a video where I need to perform following :

    1. Concat few images into video picked from android storage.
    2. Add a music file [same picked from android storage].
    3. Set Duration per image to be shown in the video. e.g. if 3 images are picked then total duration of video should be 3*duration choosen by user.

    What I have done so far.

    I am using implementation 'nl.bravobit:android-ffmpeg:1.1.5' for the FFmpeg prebuild binaries.
    Following is the command that has been used to concatenation the images and set the duration :

    ffmpeg -r 1/duration_selected_by_user -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4

    Note :

    1. By adding the duration chosen by a user as frame rate I am able to set the duration of each image to be shown.
    2. Concat work well and images are merged to for the video.

    Problem :
    When I try to add audio in the same process, progress run for a long time even for small audio by using the following command :

    ffmpeg -r 1/duration_selected_by_user -i path_of_audio_file.mp3 -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4

    It looks like there is some issue in command as I am not much familiar and experienced with the technology. How can I improve the performance of merging images and audio to get the better results ?

    Important Links related to context :

    https://github.com/bravobit/FFmpeg-Android

  • FFMpeg : merge images with audio for specific duration

    10 juillet 2018, par Killer

    I have been working on FFMpeg from past 7 days. I am required to create a video where I need to perform following :

    1. Concat few images into video picked from android storage.
    2. Add a music file [same picked from android storage].
    3. Set Duration per image to be shown in the video. e.g. if 3 images are picked then total duration of video should be 3*duration choosen by user.

    What I have done so far.

    I am using implementation 'nl.bravobit:android-ffmpeg:1.1.5' for the FFmpeg prebuild binaries.
    Following is the command that has been used to concatenation the images and set the duration :

    ffmpeg -r 1/duration_selected_by_user -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4

    Note :

    1. By adding the duration chosen by a user as frame rate I am able to set the duration of each image to be shown.
    2. Concat work well and images are merged to for the video.

    Problem :
    When I try to add audio in the same process, progress run for a long time even for small audio by using the following command :

    ffmpeg -r 1/duration_selected_by_user -i path_of_audio_file.mp3 -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4

    It looks like there is some issue in command as I am not much familiar and experienced with the technology. How can I improve the performance of merging images and audio to get the better results ?

    Important Links related to context :

    https://github.com/bravobit/FFmpeg-Android