Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (20)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5550)

  • avformat/mxfenc : fix DNxHD GC element_type

    14 décembre 2021, par Nicolas Gaullier
    avformat/mxfenc : fix DNxHD GC element_type
    

    The values for the essence element type were updated in the spec
    from 0x05/0x06 (ST2019-4 2008) to 0x0C/0x0D (ST2019-4 2009).

    Fixes ticket #6380.

    Thanks-to : Philip de Nier <philip.denier@bbc.co.uk>
    Thanks-to : Matthieu Bouron <matthieu.bouron@gmail.com>

    Reviewed-by : Matthieu Bouron <matthieu.bouron@gmail.com>
    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>

    Signed-off-by : Nicolas Gaullier <nicolas.gaullier@cji.paris>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfenc.c
    • [DH] tests/ref/lavf/mxf_opatom
  • Need to get audio video structure for automation ffmpeg or ffprobe

    10 mai 2012, par Sapan Doshi

    I need to get video audio stream information in separate form.

    I have tried ffprobe and mediainfo, but they give full information which needs to be parsed.

    I think there could be option like, where I do not need to parse the full information and get required data.

    $ffprobe -XXX
    audio channels 8

    $ffprobe -YYY
    video_resolution 512x288

    Can anybody help with this.

  • How to add intro image beginning of video with same video aspect ratio in ffmpeg ?

    10 juin 2021, par Manoj Kag

    I have one image and one video. I would like to add image as video just before actual video so i can stream video with intro frame for 5 seconds.

    &#xA;

    I found one command and full fill my requirement but in that command image added at the end of the video and i need beginning of the video. Let me share command below :

    &#xA;

    ffmpeg -i 1.mp4 -loop 1 -t 5 -i 2.jpg -f lavfi -t 5 -i anullsrc -filter_complex "[0]split[base][full];[base]trim=0:5,drawbox=t=fill[base];[1][base]scale2ref=iw:ih:force_original_aspect_ratio=decrease:flags=spline[2nd][base];[base][2nd]overlay=&#x27;(W-w)/2&#x27;:&#x27;(H-h)/2&#x27;[padded];[full][0:a][padded][2:a]concat=n=2:v=1:a=1[v][a]" -c:v libx264 -c:a aac -strict -2 -map "[v]" -map "[a]" output.mp4

    &#xA;

    Image should be resize dynamically according to the video resolution.&#xA;Best solution will be appreciate from bottom of heart.

    &#xA;