Recherche avancée

Médias (91)

Autres articles (80)

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

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

  • ffmpeg incompatible with output codec id

    28 décembre 2017, par diS

    Trying to create the dash segments with the below command :

    ./ffmpeg -y -err_detect careful -analyzeduration 8000000 -probesize 4000000 -rtbufsize 300000 -flush_packets 0  -fflags +genpts+discardcorrupt -f mpegts -i  Sample.ts -c copy -f dash -window_size 40 -min_seg_duration 8000000 -use_timeline 1 -use_template 1 live.mpd

    But I get below error :

    [mp4 @ 0x3fc0280] Tag [27][0][0][0] incompatible with output codec id '28' (avc1)
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid data found when processing input

    ffmpeg release/3.4.
    dashenc.c is on

    commit 1b8ef01f04ab2210a26b59d3a1a62daed52ce88a

    Instead of dash If I use mp4 there are no issues.

    Do we need to compulsorily transcode ?

  • how to make ffmpeg process large files faster ?

    12 octobre 2019, par Hakim Douib

    I am using ffmpeg to view video for dash player. But the videos used are more than 1GB, and the server has
    60 GB of RAM
    Ten cores

    The server takes more than 50 hours to process a video.
    The method I use is by separating each operation thread to make it faster ,
    and the files in the end have size between 2 to 5 GB

    dash params variable

    VP9_DASH_PARAMS="-tile-columns 4 -frame-parallel 1"

    cmd :

    ffmpeg  -i  vid_origenal.mp4 -c:v libx265  -s 1920x1080 -b:v 3000k -keyint_min 150 -g 150 ${VP9_DASH_PARAMS} -an -f webm -dash 1  1080.webm >/dev/null 2>&1 &

    I use this for all qualities

    thanks

  • lavf/webm_dash : fix hardcode in cues_end computation

    1er octobre 2014, par Vignesh Venkatasubramanian
    lavf/webm_dash : fix hardcode in cues_end computation
    

    Fix an incorrect hard code in cues_end computation. Updating the fate
    test reference files related to the fix as well. The earlier computation
    was clearly wrong as the cues_end field was greater than the file size
    itself in some cases.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
    • [DH] tests/ref/fate/webm-dash-manifest
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-audio-streams
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-video-streams