Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (5792)

  • configure : Include quotes around pkg_version

    16 décembre 2024, par Joe Schiffler
    configure : Include quotes around pkg_version
    

    In some MSYS environments it can happen that the 3 argument syntax
    for pkg-config library specifications fails because somehow the
    expansion of pkg_version ends up with a redirection we guess.

    To avoid failures like in the referenced build[2], we quote it
    so the whole module including operators will be expanded into
    a single shell word and the single argument syntax for specifying
    the library for pkg-config will be used.

    The single argument syntax seems to be supported by the original
    pkg-config from the beginning more than 20 years[3].

    In the pkgconf implementation single argument syntax was supported
    pretty much from the beginning as well. The multiple argument syntax
    we used until this change, was not supported until a change[4] more
    than 10 years ago.

    References


    1. Build passing with quotes :
    https://github.com/JoeSchiff/pyav-ffmpeg/actions/runs/12358403929
    2. Build failing without quotes :
    https://github.com/JoeSchiff/pyav-ffmpeg/actions/runs/12360472377
    3. Earliest commit of the current pkg-config Git repo already mentions the single argument syntax :
    https://gitlab.freedesktop.org/pkg-config/pkg-config/-/commit/2ac96cbcc708d8945329fd1b2001386e1c895c64#124c0becfe68b1ef671f49ed2b9d24779ace126f_0_162
    4. pkgconf gets support for 3 argument syntax (pkgconf —exists liba = 1.2.3) :
    https://github.com/pkgconf/pkgconf/commit/793de6a06ca52fbfe906a269b5f2b2ba41739517

    Commit-message-by : Alexander Strasser <eclipse7@gmx.net>
    Signed-off-by : Joe Schiffler <joeschiffler3@gmail.com>
    Signed-off-by : Alexander Strasser <eclipse7@gmx.net>

    • [DH] configure
  • ffmpeg ignores input svg files resolution and produces 100x100 video [closed]

    11 novembre 2024, par Francesco Potortì

    I have used this command for some years to produce .ogg files (or any other format) from a series of .svg files on Linux :

    &#xA;

    ffmpeg -y -r 1.2 -i %06d.svg -qscale:v 10 path.ogg

    &#xA;

    It has worked flawlessly until now, when it produces a video with 100x100 resolution, rather then the 1920x1080 resolution of the input files.

    &#xA;

    If I force the output resolution to be 1920x1080 using the -s option, the resulting video is a magnified version of the 100x100 video output I obtain without the -s option. If I convert the svg files to png using inkscape everything is well, but I'd like to avoid making my workflow more complex.

    &#xA;

    Here you can find some of the .svg files.

    &#xA;

    Any ideas ?

    &#xA;

  • Batch processing removal of closed captions in video files with ffmpeg [closed]

    3 octobre 2024, par user27616468

    I am trying to find an easier way of removing closed captions with ffmpeg from a lot of files, so far I have been using this and copy pasting file names in

    &#xA;

    "C :\ffmpeg\bin\ffmpeg.exe" -i "E :\Videos.mkv" -bsf:v "filter_units=remove_types=6" -c copy "E :.mkv"

    &#xA;

    Is there some way to make it do all files within the initial folder so I don't have to do each file name ?

    &#xA;

    I have seen similar inquiries in regards to closed captions from 10+ years ago on this site but after a bit of using the search feature could not find anything that may relate to my specific need.

    &#xA;

    This kind of thing is all new to me and there was a way to batch remove video titles easily but no idea how I would go about figuring the above out.

    &#xA;

    Thank you for taking the time to read through my jibber jabba.

    &#xA;

    This section is not currently applicable.

    &#xA;

    I did see this thread but it is for subtitles and not closed captions and unfortunately with my limited knowledge I don't understand it.

    &#xA;

    FFmpeg remove subtitles from file "if exists"

    &#xA;