Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (66)

  • 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

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

  • Stream Internet radio using ffmpeg

    2 juillet 2022, par Hadi M.NourAllah

    i am a beginner at IOS Development now i make app that streaming internet and there was a problem that there is extinction that ios not support like .asf and .rm and there prifx that ios not support too like mms :// so after a lot of searching a lot of people told me that "use ffmpeg" and after a lot of wasted time i successfully build ffmpeg to my xcode now i am stuck because i don't how i use it .
so could any one tell me how can i use it please don't tell me use IFrameExtrator because i tried and i failed.

    


  • Stream Internet radio using ffmpeg

    28 janvier 2014, par Hadi M.NourAllah

    i am a beginner at IOS Development now i make app that streaming internet and there was a problem that there is extinction that ios not support like .asf and .rm and there prifx that ios not support too like mms :// so after a lot of searching a lot of people told me that "use ffmpeg" and after a lot of wasted time i successfully build ffmpeg to my xcode now i am stuck because i don't how i use it .
    so could any one tell me how can i use it please don't tell me use IFrameExtrator because i tried and i failed.

  • How to "filter" a file through command line before apache sends it to client ?

    1er septembre 2020, par Timothe Jahan

    I have large collection of video files which are available on our website.
For each video we have multiple quality and language, so in order to save space we store only 1 file, which contains all audio and video tracks.

    


    Our streaming server can handle these multitrack files in order to serve only the useful part to each user, but we also make them available for download through the apache web server.
Currently, when a user request a file (certain quality, certain language), we first create a temporary file with only his needs, and give him for download.
I would like to remove this intermediate step and extract on the fly.
Extraction can be done by ffmpeg, but I need to have apache "pipe" the file through ffmpeg before sending the bytes out. Do you have any way of doing this.

    


    example :

    


    


    Filename_multi.mp4 [SD,HD,fr,en,ru]
User request : Filename_HD_fr.mp4 [HD,fr]
Apache fetch the file Filename_multi.mp4 and pipe it through an ffmpeg command and send the bytes as > they are encoded, not waiting for the end.

    


    


    Note this is on linux, and the ffmpeg part is not a problem.

    


    Thx
Timothé