Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (41)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4559)

  • How to create in Infinite Live Stream on Youtube ?

    20 mai 2017, par Quin Tosch

    I wanted to know how to make an Infinite Live stream on Youtube with ffmpeg like this one : https://www.youtube.com/watch?v=H7q9MxktwlY (The stream ended a few weeks ago)

  • How to create in Infinite Live Stream on Youtube ?

    20 mai 2017, par Quin Tosch

    I wanted to know how to make an Infinite Live stream on Youtube with ffmpeg like this one : https://www.youtube.com/watch?v=H7q9MxktwlY (The stream ended a few weeks ago)

  • Live TV Stream to Android

    8 mai 2016, par Hd Dream

    I am new user on stackoverflow.
    I wrote you today to get answer and solution to my problem.
    I have input stream come from vlc. I need that all android connected to my network can watch stream in live in the same time like an online channel tv.
    I saw for this channel

    Code : Select all
    www.canal2international.net/live.php

    there is a same ts file is generated for each 45 second.

    I need to do the same but with a mp4 file that I insered on html5 video tag.
    for that I tried to convert my input stream with this cmd on ffmpeg

    Code : Select all
    ffmpeg -i 192.168.1.10:8620 -c:v libx264 -profile:v baseline -c:a aac -ar 44100 -ac 2 -b:a 128k -f segment -segment_time 45 -segment_format_options movflags=+faststart -segment_list D :\live\play.m3u8 -segment_list_size 2 D :\live\watch%03d.mp4

    I’m not satisfied. I can’t insert m3u8 file in html5 video tag because android don’t read it and his content.

    I tried another code that I can say little similar that the result of this page

    Code : Select all
    www.canal2international.net/live.php

    Code : Select all
    ffmpeg -i 192.168.1.10:8620 -hls_flags single_file D :\live\play.m3u8

    It generated two files, a ts and a m3u8.
    I know that html5 video tag can read ts file. Maybe there is a solution somewhere.

    The second way I don’t like in this code is ts file don’t read in real time. When I read file it begin from the first encoding.

    All android connected to my network must watch in real time !

    I don’t know how to solve my problem that’s why I write in thie forum.

    Thank you in advance for all your help !