Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (81)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8057)

  • http: Send a Range header even when the offset is 0

    2 février 2022, par Justin Ruggles
    http: Send a Range header even when the offset is 0
    

    Using Range allows for getting the full file size from the
    Content-Range header in the response, even if the server sends
    back the response using chunked Transfer-Encoding, which does not
    allow using Content-Length.

    • [DH] libavformat/http.c
  • Unable to parse graph description substring in passing two word in android ffmpeg command

    16 janvier 2017, par Virani Ashish

    i have create video editing application and i have add text in video but i can add text in android ffmpeg command with space in two word like ’ashish virani’ then error occur.

    VideoEditingActivity: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
                 built with gcc 4.8 (GCC)
                 configuration: --target-os=linux --cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
                 libavutil      55. 17.103 / 55. 17.103
                 libavcodec     57. 24.102 / 57. 24.102
                 libavformat    57. 25.100 / 57. 25.100
                 libavdevice    57.  0.101 / 57.  0.101
                 libavfilter     6. 31.100 /  6. 31.100
                 libswscale      4.  0.100 /  4.  0.100
                 libswresample   2.  0.101 /  2.  0.101
                 libpostproc    54.  0.100 / 54.  0.100
               Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/GifMaker/video/Txt_1484571055758.mp4':
                 Metadata:
                   major_brand     : isom
                   minor_version   : 512
                   compatible_brands: isomiso2avc1mp41
                   encoder         : Lavf57.25.100
                 Duration: 00:00:05.85, start: 0.021333, bitrate: 714 kb/s
                   Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 480x200 [SAR 1:1 DAR 12:5], 578 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
                   Metadata:
                     handler_name    : VideoHandler
                   Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s (default)
                   Metadata:
                     handler_name    : SoundHandler
               [AVFilterGraph @ 0xacf304f0] **Unable to parse graph description substring: "ccjcjcjc
               v**
               gv:x=210:y=20"
               Error opening filters!
  • Get FFMPEG KeyFrames Time or time range

    25 août 2014, par user1729031

    I am using following command to get keyframe of desire video

    ffmpeg -i testinput.mp4 -vf select='eq(pict_type\,I)',setpts='N/(24*TB)' C:\testTemp\%09d.jpg"

    I want to extract key-frame time/time duration/start time-end time to map keyframe with time.

    Is there any way to get time information of key-frame in same command ?