Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (67)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7565)

  • Playing encrypted m4a on Android

    20 novembre 2013, par Fixee

    I'm pulling down encrypted music, decrypting on-the-fly to m4a plaintext buffer and want to then play this music on Android (4.x). It appears the options are bleak :

    1. Write the buffer to disk and use MediaPlayer() with a FileDescriptor
    2. Write the buffer to disk and use a proxy like nano to serve MediaPlayer() via a URI
    3. Decode the buffer to PCM and use AudioTrack to play it

    Options 1 and 2 require writing plaintext to SD, which isn't acceptable. Option 3 requires decoding in software (with, eg, ffmpeg) which seems ridiculous : if there are hardware decoders on the device we can't use them. And if there is a software decoder, we can't access it and put yet another decoder on the device (ffmpeg's).

    Note that using OpenSL doesn't help at all : you still cannot play m4a's from a buffer. Is there another way ?

  • RTMP_ReadPacket, failed to read RTMP packet header

    14 juin 2018, par Dilivio Cat

    I am trying to livestream a 24/7 looping stream from my Ubuntu server to youtube.

    I have a gif that is looping and my music gets shuffled from a music list.

    for i in ./*.mp3 ; do echo "file '$i'" ; done | shuf >mp3list.txt ffmpeg -f
    concat -i mp3list.txt -fflags +genpts -ignore_loop 0 -i giffilename.gif -f
    flv rtmp://a.rtmp.youtube.com/live2/(mykeyhere)

    But I am getting this error when I run my script :

    RTMP_ReadPacket, failed to read RTMP packet header : Unknown error
    occutredm/live2/(mykeyhere)

    I did some research, but couldn’t find anything about this specific error. I opened port 1935 and it did not change anything.

    The OS is Ubuntu 16.04 on a VPS.
    Thanks for your help,

    Dilie

  • How to cut and concatenate the file so it is not off-beat when the file I got the bpm from is being muxed ?

    27 janvier 2017, par P. Dee

    I am cutting files with ffmpeg based on the bpm I found in a music file. So let’s assume, the file’s bpm = 120. That means, there are 2 bps and 1 beat every 500ms.

    So I cut a video file with multiples of 500ms length, ie 500ms, 1500ms, 3000ms etc. length. But cutting it using

    ffmpeg -ss start -i fileorig.mp4 -t duration part_number.mp4

    and finally creating a mylist.txt with

    file 'part_1.mp4'
    file 'part_2.mp4'
    ...

    and adding them via

    ffmpeg -f concat -i mylist.txt -c copy output.mp4

    and replacing the audio track with the music file, makes the video be off-beat after some time.

    How to cut and concatenate the file so it is not off-beat when the file I got the bpm from is being muxed ?