Recherche avancée

Médias (91)

Autres articles (76)

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

  • Does H.264 encoding profile affect encoding performance ?

    3 novembre 2017, par user8154565

    I want to encode in real-time using as little CPU and memory\disk I\O as possible, keeping a low CRF (currently 14). Will changing the encoding profile from Baseline to something else affect encoding CPU usage ?

    My current settings are :

    Profile\Level : Baseline@L5.2

    Resolution and frame rate : 1920x1080 @ 144.001 FPS (variable frame rate mode)

    Average overall data rate : 174 mbit\s (audio is 320kbit\s VBR AAC)

    x264 settings : cabac=0 / ref=1 / deblock=0:0:0 / analyse=0:0 / me=dia / subme=0 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=0 / me_range=16 / chroma_me=1 / trellis=0 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=0 / threads=24 / lookahead_threads=4 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=0 / weightp=0 / keyint=250 / keyint_min=25 / scenecut=0 / intra_refresh=0 / rc=crf / mbtree=0 / crf=14.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=0

  • FFMPEG - Long pause in av_read_frame

    5 décembre 2018, par comwizz2

    I am trying to write a service that converts a m3u8 link from youtube.

    I am loading the stream info then setting all but 1 video and 1 audio stream to AVDISCARD_ALL.

    Everything works fine except after several seconds of playing av_read_frame blocks for 30 seconds to a couple minutes.

    I’m not the best versed in ffmpeg so I’m not exactly sure what to do from here.
    Extracting one of these links into ffplay works fine it seems, but I don’t see what they may be doing differently ? I’m just hoping someone can point me in the right direction of anything to try.

    Attached is a callstack from when this is happening. I am not sure if anything here looks amiss.

    enter image description here

  • how to Extract Audio from video with spring boot java in linux or windows system with ffmpeg coding part need guidance

    2 décembre 2022, par Makarand Burud

    I got this command but don't know the how to configure it for project on command line ?

    


    String[] command = "-y", "-i", filename, "-vn",
"-ar", "44100", "-ac", "2", "-b:a", "256k", "-f", "mp3" + fileStorageLocation ;