Recherche avancée

Médias (91)

Autres articles (67)

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

  • Encode h264 automatically on nginx server

    18 février 2017, par Thinh Pham

    I have installed and configured my own streaming server using Nginx with rtmp module base on this tutorial https://www.vultr.com/docs/setup-nginx-on-ubuntu-to-stream-live-hls-video. I only use live application and record stream into flv file. And now I want to encode any new flv files in my VOD directory automatically to play it on my website. Is it possible to config it in my nginx.conf ? I have tried set record_suffix .mp4; in order to play it without encode but failed.
    Additional, exec ffmpeg -i is not work for me when I want to restream into mobile application.

  • How to optimize the FFMPEG h264/aac conversion while generating HLS segments too

    5 avril 2020, par Arjun Thakur

    I am generating HLS segments using FFMPEG. Here is the command that I am using :

    



    ffmpeg -i "rtmp ://localhost/oflaDemo/33/hlsopt3 live=1" -y -c:v libx264 -b:v 1000k -vprofile baseline -preset medium -x264opts level=41 -threads 4 -s 480x360 -map 0:v -c:a libfaac -b:a 160000 -ac 1 -hls_time 3 -hls_list_size 3 -hls_wrap 10 -start_number 1 hlsopt3.m3u8

    



    I am working on Ubuntu 12.04 and using RED5 1.0.2 as my streaming server and I want to stream videos on android and ios devices. But the playback on devices is very jerky, they do not play video smoothly. Also my server's CPU utilization goes to more than 100%.

    



    After so much research I have found that the CPU utilization is due to the H264/mpeg-4 aac conversion, But without doing conversion it wont play on Ios and android devices.

    



    So please suggest me any solution. How I can play it smoothly on mobile devices and also save the CPU utilization.

    



    Please help me I have almost waisted 10 days on this.

    



    Any help would be really appreciated.

    


  • How to optimize the FFMPEG h264/aac conversion while generating HLS segments too

    26 septembre 2014, par Arjun Thakur

    I am generating HLS segments using FFMPEG. Here is the command that I am using :

    ffmpeg -i "rtmp ://localhost/oflaDemo/33/hlsopt3 live=1" -y -c:v libx264 -b:v 1000k -vprofile baseline -preset medium -x264opts level=41 -threads 4 -s 480x360 -map 0:v -c:a libfaac -b:a 160000 -ac 1 -hls_time 3 -hls_list_size 3 -hls_wrap 10 -start_number 1 hlsopt3.m3u8

    I am working on Ubuntu 12.04 and using RED5 1.0.2 as my streaming server and I want to stream videos on android and ios devices. But the playback on devices is very jerky, they do not play video smoothly. Also my server’s CPU utilization goes to more than 100%.

    After so much research I have found that the CPU utilization is due to the H264/mpeg-4 aac conversion, But without doing conversion it wont play on Ios and android devices.

    So please suggest me any solution. How I can play it smoothly on mobile devices and also save the CPU utilization.

    Please help me I have almost waisted 10 days on this.

    Any help would be really appreciated.