Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (95)

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

  • x264 rate control modes

    19 septembre 2013, par xkfz007

    Recently I am reading the x264 source codes. Mostly, I concern the RC part. And I am confused about the parameters —bitrate and —vbv-maxrate. When bitrate is set, the CBR mode is used in frame level. If you want to start the MB level RC, the parameters bitrate, vbv-maxrate and vbv-bufsize should be set. But I don't know the relationship between bitrate and vbv-maxrate. What is the criterion of the real encoding result when bitrate and vbv-maxrate are both set ?
    And what is the recommended value for bitrate ? Equals to vbv-maxrate ?
    Also what is the recommended value for vbv-bufsize ? Half of vbv-maxrate ?
    Please give me some advice.

  • ffmpeg : concat two clips vertically, but upper one should be bigger

    19 juillet 2022, par Rittari771

    I have two 1920x1080 clips. I know how to concat two clips vertically (the clips share equally the space half, 50% upper clip - 50% bottom) => what would i need to do to get a ratio like 65% 35% ?
So the upper clip would take 65% of the screen space vertically, then the lower bottom clip would fill the rest 35% ?

    


    this is my current code to concat the clips vertically.

    


    ffmpeg -i clip_top.mp4 -i clip_bottom.mp4 -filter_complex "vstack=inputs=2" -vsync 2 final_clip.mp4


    


    here is the same explanation, but with a picture : enter image description here

    


  • streaming from generated images using ffmpeg / vlc / live555

    10 octobre 2019, par Pavel

    For the life of me I cannot get this to work correctly.

    The idea is : simple python script that loads an image from a url (different every time) and passes it to ffmpeg, eg :

    python fetch.py | ffmpeg -f image2pipe -framerate 1 -i pipe:.jpg -c:a copy -c:v libx264 -r 5 -b 500000 -s 600x480 ../live555/out.264

    What I really need is to make this work with some sort of rtsp server.
    So far a sort of working approach was to use live555MediaServer that is running on the same server and pretty much streams that out.264 file.

    Why I don’t like this approach :

    a. connecting to rtsp stream using vlc works but it’s very unstable (video stops) and there are not errors or anything, if I click play it resumes.
    debug :
    live555 debug: RTSP track Close, 0 track remaining
    It seems like it just streams whatever the file has at that moment of time and does not do it continuously.

    b. I don’t like the "file" approach. Eg. ffmpeg is creating an out.264 file which grows. Ideally it would simply send the stream to the RTSP server via some protocol.

    c. live555MediaServer just sucks

    It looks like there is a way to run vlc server on my server as well, but I cannot figure out how to make ffmpeg feed the vlc server ?

    Any suggestions ?