Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (41)

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6248)

  • avformat/flvdec : Check double before cast in parse_keyframes_index()

    26 janvier 2021, par Michael Niedermayer
    avformat/flvdec : Check double before cast in parse_keyframes_index()
    

    Fixes : -2.21166e+304 is outside the range of representable values of type 'long'
    Fixes : 29169/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5725452796821504

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

    • [DH] libavformat/flvdec.c
  • Remove double ' ;'

    1er mars 2021, par Andreas Rheinhardt
    Remove double ' ;'
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cinepakenc.c
    • [DH] libavcodec/exr.c
    • [DH] libavcodec/imc.c
    • [DH] libavcodec/mobiclip.c
    • [DH] libavdevice/lavfi.c
    • [DH] libavfilter/af_aiir.c
    • [DH] libavfilter/vsrc_gradients.c
    • [DH] libavformat/movenc.c
  • How to write ffmpeg windows command for file path inside double quotes option

    19 février 2021, par Herahadi An

    please help

    &#xA;

    I want to use ffmpeg for my c # application but an error appears

    &#xA;

    this is my code

    &#xA;

    videoPath = @"c:\location\in.mp4";&#xA;tempVideoPath = @"c:\another_location\out.mp4";&#xA;&#xA;process.StartInfo.FileName = @"ffmpeg.exe";&#xA;    &#xA;process.StartInfo.Arguments = "-loop 1 -i \""&#x2B;tbBGFrame.Text&#x2B; "\" -vf \"movie=\""&#x2B;videoPath&#x2B; "\",scale=1900:-1[inner];[in][inner]overlay=70:70:shortest=1[out]\" -y \""&#x2B;tempVideoPath&#x2B;"\"";&#xA;

    &#xA;

    the problem is inside movie parameter. i have to include video path inputed by user but its give an error because its already double quote exist before.

    &#xA;

    its successfully if i try on windows cmd like this

    &#xA;

    > cd "C:\Users\Toshiba\Pictures\test vcp\input_mp4_dir\"&#xA;> ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=input.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4&#xA;

    &#xA;

    but how i can run that command wihtout change directory to input.mp4 directory ?

    &#xA;