Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (96)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8691)

  • python : video-splitter- [WinError 2] The system cannot find the file specified

    20 novembre 2018, par Bruce

    I am trying to run this script called.
    video-splitter. However, when I try to run the script, I get the following error :

    Exception occured running main():
    [WinError 2] The system cannot find the file specified

    This is the command I ran :

    python ffmpeg-split.py -f big_video_file.mp4  -s 10

    From the documentation

    This splits big_video_file.mp4 into chunks, and the size of chunk is 10 seconds. Each chunk will be suffixed with numeric index, for example big_video_file-0.mp4, big_video_file-1.mp4, etc.
  • FFmpeg - trim audio error, Could not find codec parameters ?

    27 novembre 2018, par wensefu

    I’m tring trim a audio file using ffmpeg,

    input info :

    input.mp3
    duration=264000, artist=xxx, album=yyy, audio_codec=mp3, filesize=4234952, title=aaa, chapter_count=0

    command :

    ffmpeg -i input.mp3 -ss 71.000 -t 91.900 -max_muxing_queue_size 1024 -acodec copy output.mp3

    and then I got error below :

    [mp3 @ 0xd170ca00] Could not find codec parameters for stream 0 (Audio: mp3, 44100 Hz, 2 channels, 128 kb/s): unspecified frame size
       Consider increasing the value for the 'analyzeduration' and 'probesize' options
    Guessed Channel Layout for Input Stream #0.0 : stereo**

    Can someone help me ? Many thanks.

  • Command find and convert using ffmpeg

    16 avril 2023, par molwiko

    I would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
The two command line :

    



    find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3