Recherche avancée

Médias (91)

Autres articles (37)

  • 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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Optimizing preprocessing of data

    12 mai 2018, par WhatAMesh

    I have to preprocess 1-2,5 Terabytes of 1920x1080 videos (in .mp4 format) and try to find the fastest way to do so.

    For every video I have to :

    • Sample at 1 fps
    • Crop two images out of every frame
    • Save the two frames (output format needs to be uncompressed)

    Im currently doing it the following way using ffmpeg :

    def cropVideo(vidInPath, vidOutPath):
               crop = 'ffmpeg -i ' + vidInPath + ' -filter_complex "[0:v]crop=400:200:0:484[face];[0:v]crop=300:50:1624:300[number]" -map [face] -map 0:a ' + vidOutPath + '/face/face.mp4 -map [number] -map 0:a ' + vidOutPath + '/number/number.mp4'
               subprocess.call(crop)
               return

    def videoToImageSequence(vidInPath, vidOutPath):
       conv = 'ffmpeg -i ' + vidInPath + ' -vf fps=1 ' + vidOutPath + 'video-frame%05d.png'
       subprocess.call(conv)
       return

    cropVideo(dirPath + a + '.mp4', dirPath + a + '/')
    videoToImageSequence(dirPath + a + '/face/face.mp4', dirPath + a + '/face/')
    videoToImageSequence(dirPath + a + '/number/number.mp4', dirPath + a + '/number/')

    Is there a faster way to do this ?

  • FFmpegMediaPlayer not playing some audio formats

    13 décembre 2015, par Alex Kombo

    The library seems to be working fine for most of the streams but mms streams, some mp3 streams and music from soundcloud of this format : https://api.soundcloud.com/tracks/203295468/stream?client_id=be1cce58c3bf38a344d5b436a2d6d7d1 ; don’t play. This is the error message I get :

    .490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer-JNI: native_setup
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: constructor
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: setListener
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer-JNI: setAudioStreamType: 3
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: MediaPlayer::setAudioStreamType
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer-JNI: setDataSource: path mmsh:/stream.kbc.co.ke:8083
    11-06 14:28:26.490 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer:
    setDataSource(mmsh:/stream.kbc.co.ke:8083)
    11-06 14:28:26.490 21385-21385/com.radioafrica.music E/Stream: mms://stream.kbc.co.ke:8083
    11-06 14:28:26.490 21385-21385/com.radioafrica.music E/AudioManager: Player entry present, no need to add
    11-06 14:28:26.494 21385-21385/com.radioafrica.music V/AudioManager: updating focussed RCC change to RCD: CallingPackageName:com.radioafrica.music
    11-06 14:28:26.516 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: prepareAsync
    11-06 14:28:26.516 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: MediaPlayer::setAudioStreamType
    11-06 14:28:43.535 21385-25001/com.radioafrica.music V/FFmpegMediaPlayer: message received msg=100, ext1=1, ext2=0
    11-06 14:28:43.535 21385-25001/com.radioafrica.music E/FFmpegMediaPlayer: error (1, 0)
    11-06 14:28:43.535 21385-25001/com.radioafrica.music V/FFmpegMediaPlayer: callback application
    11-06 14:28:43.535 21385-25001/com.radioafrica.music V/FFmpegMediaPlayer-JNI: notify: 100
    11-06 14:28:43.537 21385-21385/com.radioafrica.music E/FFmpegMediaPlayer: Error (1,0)
    11-06 14:28:43.537 21385-25001/com.radioafrica.music V/FFmpegMediaPlayer: back from callback
    11-06 14:28:43.581 21385-21385/com.radioafrica.music E/Music: Error: what=1, extra=0
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer-JNI: reset
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: reset
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer-JNI: release
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: setListener
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: disconnect
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: destructor
    11-06 14:28:43.584 21385-21385/com.radioafrica.music V/FFmpegMediaPlayer: disconnect

    Is there anything i missed when setting up the library that should make these streams play ? How can I handle this issue ?

  • Révision 113768 : [Salvatore] [source:_core_/plugins/forum/lang/ forum] Export depuis http://trad....

    6 février 2019, par salvatore@rezo.net

    La langue ’el’ devrait être supprimée car trop peu traduite (34.06 %)
    La langue ’hac’ devrait être supprimée car trop peu traduite (29.71 %)
    La langue ’is’ devrait être supprimée car trop peu traduite (10.14 %)
    La langue ’lt’ devrait être supprimée car trop peu traduite (26.81 %)
    La langue ’nap’ devrait être supprimée car trop peu traduite (25.36 %)
    La langue ’nb’ devrait être supprimée car trop peu traduite (32.61 %)
    La langue ’rn’ devrait être supprimée car trop peu traduite (2.90 %)
    La langue ’roa’ devrait être supprimée car trop peu traduite (26.81 %)