Recherche avancée

Médias (1)

Mot : - Tags -/ogv

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 (14015)

  • mid-roll ads in HLS or mpeg-dash

    21 février 2017, par evan

    I’m encoding my videos with ffmpeg and transcoding them into HLS videos. I want to add mid-roll ads to my converted videos.

    I was wondering what is the best way to do it ? should I just add the ads to my video and make a big video stream and then do the HLS thing ? or I should break the HLs video and put the ads in the middle while playing ?

    My content is live streaming and I want to add mid-roll ads in the middle of my video while playing.

    ffmpeg -i main720.MTS -movflags faststart -s 640*360 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 300k -maxrate 300k -bufsize 400k -g 96 -an hls3/main720_300.mp4 -s 1280*720 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 700k -maxrate 700k -bufsize 1000k -g 96 -an hls3/main720_700.mp4 -hls_time 4 -hls_segment_filename 'hls3/file%03d.ts' -hls_list_size 0 hls3/out.m3u8
  • How to convert a continuously growing MXF file into DASH format

    10 octobre 2020, par Damian

    I am trying to find a way to convert MXF files in chunks rather than use the whole file. The purpose of this is because I have a continuously growing MXF. I am using ffmpeg for conversion and I already have the working commands for the whole file. Say I have the following : Scenario :

    


    > 1. Header Partition
> 2. Body Partition-1
> 3. Body Partition-2
> 4. Body Partition-3
> 5. Footer Partition
> 6. RIP


    


    Can I split this into 2 or 3 other files and convert them separately or is this impossible to achieve ? Or maybe find another way around of converting MXF inside a stream ?

    


  • Convert ismv to mpeg-dash with node js

    20 février 2017, par MBajor13

    I’m trying stream live video from ip camera to HTML 5 video teg.
    I encoding stream with ffmpeg. The comand is.

    $ ffmpeg -rtsp_transport tcp -an -i "rtsp://192.168.1.10:554/user=admin&password=&channel=1&stream=0.sdp" -f mp4 -reset_timestamps 1 -movflags isml+empty_moov+default_base_moof -g 30 -probesize 200000 "http://localhost:1313/mediasourse.isml/stream1"

    Then I resive the date in node.js server and send them to users whith WebSocket.
    The issue is that the search bar in video teg remain on the same plase.

    I notice that mp4box except "moof" and "mdat" atoms adds "styp" and "sidx" atoms in each segment. "moov" atom is also different. But I don’t know what exactly I nead to edite.

    Thanks.