Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (80)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (4109)

  • lavf : Replace the ASF demuxer

    15 juin 2015, par Alexandra Hájková
    lavf : Replace the ASF demuxer
    

    The old one is the result of the reverse engineering and guesswork.
    The new one has been written following the now-available specification.

    This work is part of Outreach Program for Women Summer 2014 activities
    for the Libav project.

    The fate references had to be changed because the old demuxer truncates
    the last frame in some cases, the new one handles it properly.
    The seek-test reference is changed because seeking works differently
    in the new demuxer. When seeking, the packet is not read from the stream
    directly, but it is rather constructed by the demuxer. That is why
    position is -1 now in the reference.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] Changelog
    • [DBH] libavformat/asf.h
    • [DBH] libavformat/asfdec.c
    • [DBH] libavformat/asfenc.c
    • [DBH] libavformat/version.h
    • [DBH] tests/ref/fate/wmv8-drm-nodec
    • [DBH] tests/ref/seek/lavf-asf
  • How to scale video in front of image using ffmpeg ? [closed]

    29 juillet 2022, par Nigrimmist

    What i have :

    &#xA;

    png picture dem.png (not transparent) and video cat.mp4

    &#xA;

    Current result :

    &#xA;

    enter image description here

    &#xA;

    by executing :

    &#xA;

    ffmpeg -i cat.mp4 -framerate 30 -i dem.png -filter_complex "[1][0]overlay=x=100:y=100" -c:a copy -movflags &#x2B;faststart out2.mp4&#xA;

    &#xA;

    How can i scale mp4 in case i know paddings/required height/width of scaled mp4 here ?

    &#xA;

    Very beginner in ffmpeg. I know, i need to use scale param, but can't understand how to do it with my current ffmpeg command.

    &#xA;

    Maybe someone know how to do it ?

    &#xA;

    Files are here if you need : https://drive.google.com/drive/folders/1gKJCyVU0IgJ8g3zWFhCA-L93lDOWyOS-?usp=sharing

    &#xA;

  • Is there a way to convert files from YUV 4:2:0 to MP4 losslessly using ffmpeg on Mac ?

    14 février 2021, par Enrique Perez

    I'm currently working on some image compression research, but I've been having trouble decoding the video for MATLAB. The original files are in *.mkv format from this website : https://console.cloud.google.com/storage/browser/ugc-dataset/original_videos.

    &#xA;

    At first I tried using a simple copy command like the following :

    &#xA;

    ffmpeg -i original_videos_LiveMusic_360P_LiveMusic_360P-3be0.mkv -c:v copy original_videos_LiveMusic_360P_LiveMusic_360P-3be0.mp4&#xA;

    &#xA;

    With that, I got the following error :

    &#xA;

    &#xA;

    [mp4 @ 0x7f932a808200] Could not find tag for codec rawvideo in stream #0, codec not currently supported in container&#xA;Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument

    &#xA;

    &#xA;

    I was able to convert the files to *.avi, but unfortunately these are not readable by MATLAB on Mac OS. I need the video conversion to be lossless, so I can't figure it out. The video codec is YUV 4:2:0.

    &#xA;

    Thank you for your help, it is greatly appreciated.

    &#xA;