Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (61)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8068)

  • How to display a stream of mdat/moof boxes in VLC ? [closed]

    8 juillet 2024, par roacs

    I am trying to display a real-time video stream in VLC. The snag is that the real-time video that is being received is a stream of just the mdat and moof boxes of a fragmented MP4 file that is being recorded elsewhere. The initialization information (ftyp/moov) is not and will never be available in the real-time stream. There is also no audio.

    


    I have access to initialization information (ftyp/moov) of a previously completed file and can use that to aid in the processing/streaming of the real-time mdat/moof boxes.

    


    I am currently extracting the contents of the mdat box, splitting those up and packaging them in 188 byte MPEG-TS packets and multicasting them for VLC to pick up. And just as a shot in the dark, every 50 mdat's I am also packaging the SPS and PPS NALUs from the initialization information of the completed file and multicasting those in one MPEG-TS packet.

    


    Input looks like this :

    


      

    • ...
    • 


    • mdat 1
    • 


    • moof 1
    • 


    • mdat 2
    • 


    • moof 2
    • 


    • ...
    • 


    • mdat N
    • 


    • moof N
    • 


    • ...
    • 


    


    And my output looks like this :

    


      

    • ...
    • 


    • MPEG-TS 1 containing first 184 bytes of mdat 1
    • 


    • MPEG-TS 2 containing next 184 bytes of mdat 1
    • 


    • ...
    • 


    • MPEG-TS N containing last 184 bytes of mdat 1
    • 


    • MPEG-TS N+1 containing first 184 bytes of mdat 2
    • 


    • MPEG-TS N+2 containing next 184 bytes of mdat 2
    • 


    • ...
    • 


    • MPEG-TS N+M containing last 184 bytes of mdat 2
    • 


    • ...
    • 


    • MPEG-TS containing SPS and PPS NALU
    • 


    • ...
    • 


    


    VLC gets the data but no video playback.

    


    How do I process this input in order to get it to play in VLC ?

    


  • fate : Switch ra4-288 test from framecrc() to pcm()

    24 septembre 2014, par Katerina Barone-Adesi
    fate : Switch ra4-288 test from framecrc() to pcm()
    

    The decoder is float-based and the test needs to allow for some fuzz.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] tests/fate/real.mak
    • [DBH] tests/ref/fate/ra4-288
  • Android-How to pass back frames from FFmpeg back to Android

    23 octobre 2013, par yarin

    It is an architecture question-i am really interesting about the answer

    I building an app with following goals :

    1.record video with effect in real time(using FFmpeg)

    2.display the customized video in real time for the user while he recording

    So,after 1 month of working...i decide to remember that goal number 2 is worth to thinking about :)
    I have a ready skeleton app that record video with effect in real time.
    but i have to preview this customized frame back to the user.

    My options (and this is my question) :

    1.Each frame that pass from onPreviewFrame(byte[] video_frame_data, Camera camera) to ffmpeg with JNI to encode-will sending back to android through the same JNI after i apply the effects(i mean : onPreviewFrame->JNI to FFMPEG->immediately apply effect->send the costumed frame back to android side for display->encode the costumed frame).

    Advantages : it is look like is the most easy to use.

    Disadvantages : use the JNI twice or the passing back the frame could consume time(i really don't now if it really big price to pay,cuz it is only byte array or int array per frame to send to android side)

    2.I heard about openGL on ndk,but i think that the surface it self created on the android side-so is it really going to be better ?
    i prefer to use other surface that i using now in java

    3.Create an video player on FFmpeg to preview each customized frame in real time.

    Thank for your helping,i hope that the first solution is available and not consume to much expensive time in terms of real time processing