Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (96)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (4742)

  • avconv - reducing video dimensions and file size

    26 mai 2018, par Verode

    Is there any way how to reduce the size of video ?

    In php I use this :

    $result = exec("avconv -i $file1 -vcodec libx264 -acodec aac -strict experimental $file2");

    Unfortynately, all produced videos have the same size as originals or are more bigger.

    1) First of all I want to reduce dimensions of all videos : width : 750px, height : auto. Is it possible ?

    2) Is there some way how to reduce the quality a little bit ? Of course, I don’t want blurry videos but in some websites I see that a good quality 15 minutes videofile have a size something like 50 MB. My videos of 1 minute have the same size.

  • avcodec/agm : YUV420 without DCT needs even dimensions

    10 janvier 2020, par Michael Niedermayer
    avcodec/agm : YUV420 without DCT needs even dimensions
    

    Fixes : out of array access
    Fixes : 19892/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5707525924323328

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/agm.c
  • How to combine pictures with an audio into a video by ffmpeg ? [duplicate]

    3 septembre 2019, par Saeron Meng

    I recorded my voice for a powerpoint (or a bunch of pictures). Now I have all materials and a list of starttimes and endtimes of each picture, but I don’t know how I should use the command line to apply ffmpeg so as to combine those to a video.

    I have searched on the Internet, some of the websites tell me to create a txt file containing the starttime and endtime of each picture and use the concat option of ffmpeg. But I don’t know how to write the txt and achieve it.

    Previously, I have an xml file containing starttimes and endtimes, to indicate my pictures :

    <page title="1" height="540" width="960" starttimestamp="794.852" speedup="true" step="65535" stoptimestamp="1008.887" loc="hls/128345566_0.png"></page>
    <page title="2" height="540" width="960" starttimestamp="1008.887" speedup="false" step="0" stoptimestamp="1078.888" loc="hls/128345566_1.png"></page>
    <page title="3" height="540" width="960" starttimestamp="1078.888" speedup="false" step="0" stoptimestamp="1081.206" loc="hls/128345566_2.png"></page>

    How to write the concat list and apply ffmpeg ? (just format will be okay)