Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (36)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5470)

  • tests : Fix the dependencies for the fate-jpg-icc test

    12 avril 2022, par Martin Storsjö
    tests : Fix the dependencies for the fate-jpg-icc test
    

    The test also requires a png decoder, which often can be disabled in
    cross building setups, where zlib might be missing.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/fate/image.mak
  • How to solve video is choppy when scrolling on android browser ?

    18 septembre 2024, par SiLeafClover

    I am currently doing video scrolly kind of things. I'm using GSAP and Scrolltrigger and sveltekit to play video on scroll. At the beginning of the implementation, the video is very laggy on scroll on all browsers and cross devices.

    &#xA;

    So I do some research and found out video encoding is so important and found this ffmpeg command through codepen. ffmpeg -i originalVideo.mp4 -movflags faststart -vcodec libx264 -crf 23 -g 1 -pix_fmt yuv420p output.mp4
    &#xA;When I use the video which is exported by the above command, it works smoothly on windows, mac and ios. But I'm still having issues with my phone (Andriod). When I check the website on my phone(Android), the video is laggy/choppy on scroll but on ios, the video is fine. So may I know which options do I need to add for the video encoding to play the video smoothly on Android ?

    &#xA;

  • converting eac3 to aac with ffmpeg

    30 novembre 2023, par vespino

    I have a number of video files stored on my Synology of which the audio doesn't play on when opening them with DS File. This is because DS File does not support eac3. I would like to convert those files to aac using ffmpeg, but when doing so, all audio is lost.

    &#xA;

    This is the file info :

    &#xA;

    Input #0, matroska,webm, from &#x27;<file>.mkv&#x27;:&#xA;  Metadata:&#xA;    encoder         : libebml v1.4.2 &#x2B; libmatroska v1.6.4&#xA;  Duration: 00:48:43.42, start: 0.000000, bitrate: 6566 kb/s&#xA;    Stream #0:0: Video: h264 (High), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)&#xA;    Stream #0:1(eng): Audio: eac3, 48000 Hz, 5.1 (default)&#xA;    Stream #0:2(eng): Subtitle: subrip&#xA;    Metadata:&#xA;      title           : English [SDH]&#xA;    Stream #0:3(ara): Subtitle: subrip&#xA;    Metadata:&#xA;      title           : Arabic&#xA;    Stream #0:4(chi): Subtitle: subrip&#xA;</file>

    &#xA;

    This is my attempt :

    &#xA;

    ffmpeg -i <file>.mkv -map 0:v -map 0:a:0 -map 0:s -c copy -c:a aac -b:a 640k output.mkv&#xA;</file>

    &#xA;

    Subtitles are kept, but audio is completely removed. I would like to automate the process if possible.

    &#xA;

    This is my ffmpeg configuration :

    &#xA;

    ffmpeg version 4.1.8 Copyright (c) 2000-2021 the FFmpeg developers&#xA;  built with gcc 8.5.0 (GCC)&#xA;  configuration: --prefix=/usr --incdir=&#x27;${prefix}/include/ffmpeg&#x27; --arch=i686 --target-os=linux --cross-prefix=/usr/local/x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu- --enable-cross-compile --enable-optimizations --enable-pic --enable-gpl --enable-shared --disable-static --disable-stripping --enable-version3 --enable-encoders --enable-pthreads --disable-protocols --disable-protocol=rtp --enable-protocol=file --enable-protocol=pipe --disable-muxer=image2 --disable-muxer=image2pipe --disable-swscale-alpha --disable-ffplay --disable-ffprobe --disable-doc --disable-devices --disable-bzlib --disable-altivec --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libmp3lame --disable-vaapi --disable-cuvid --disable-nvenc --disable-decoder=aac --disable-decoder=aac_fixed --disable-encoder=aac --disable-decoder=amrnb --disable-decoder=ac3 --disable-decoder=ac3_fixed --disable-encoder=zmbv --disable-encoder=dca --disable-decoder=dca --disable-encoder=ac3 --disable-encoder=ac3_fixed --disable-encoder=eac3 --disable-decoder=eac3 --disable-encoder=truehd --disable-decoder=truehd --disable-encoder=hevc_vaapi --disable-decoder=hevc --disable-muxer=hevc --disable-demuxer=hevc --disable-parser=hevc --disable-bsf=hevc_mp4toannexb --x86asmexe=yasm --cc=/usr/local/x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu-wrap-gcc --enable-yasm --enable-libx264 --enable-encoder=libx264&#xA;  libavutil      56. 22.100 / 56. 22.100&#xA;  libavcodec     58. 35.100 / 58. 35.100&#xA;  libavformat    58. 20.100 / 58. 20.100&#xA;  libavdevice    58.  5.100 / 58.  5.100&#xA;  libavfilter     7. 40.101 /  7. 40.101&#xA;  libswscale      5.  3.100 /  5.  3.100&#xA;  libswresample   3.  3.100 /  3.  3.100&#xA;  libpostproc    55.  3.100 / 55.  3.100&#xA;

    &#xA;

    Synology does not support eac3 out of the box. So is this even possible ?

    &#xA;