Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (89)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer 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

Sur d’autres sites (6814)

  • http: try to detect live akamai streams and dont enable seeking for them

    3 juin 2012, par Michael Niedermayer

    http: try to detect live akamai streams and dont enable seeking for them

  • Set up a Red5 server with FFmpeg for live streaming to iOS

    13 mars 2013, par Giancarlo Molina

    I'm an app developer and I need to implement FFmpeg to transcode/change an rtmp live stream to an http live stream so that I can play it on any iOS device (iPhone and iPad).

    My problem is that I am fairly new when it comes to server, media stuff and FFmpeg. And I need to change the server so that I can transcode the live stream on the server side (which I have read that is possible). Any tips, suggestions, sample code, or tutorials would be of great help.

  • transcode segment files without stutter for http live streaming

    28 juillet 2015, par zerocap

    I segmented a multicast video stream into small ts files for my HTTP live streaming service and it worked quite well. Then I found the bitrate of the source was too high (1.5mbps) so I set up a background job to transcode the ts files to a smaller bitrate (500kbps) using FFmpeg. The problem is that the 500k .m3u8 playback stutters(on every new file’s loading) and is not as smooth as the 1.5mbps one.

    My transcoding command line is like following :

    ffmpeg -i /home/rca/tst.ts -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -vcodec libx264 -b 500k /home/rca/tst.ts

    Any ideas for this ? Thank you !