Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (99)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

Sur d’autres sites (11568)

  • I need to find the progress of the task being done by ffmpeg.exe and redirect it to the progress bar in my windows forms application ?

    22 avril 2019, par Malindu Dilanka

    I am creating a simple video converter using ffmpeg.exe tool. So, in order to display the progress of the conversion, I need to grab the output of ffmpeg cmd output and then transfer it to my textbox in the windows forms application. Or, maybe I could get the progress of the ffmpeg task and transfer it to a progress bar. How can I do any of these ?

    I tried using 2> something.txt to save the output from cmd inline with the command. But, when reading it, I am not able to update textbox.

  • Cmd - find some files and execute a command on that file

    31 mars 2019, par MrAlex

    In my case, i need to find all .flv files in my drive, transcode them with ffmpeg and then delete them but i don’t know how to run the command on each of them

  • FFMPEG Android binary cannot find file in storage

    1er novembre 2014, par user2491598

    I am trying to run ffmpeg command on my Android using the ffmpeg binary library, but I keep getting an error that says :

    ffmpeg - i /storage/emulated/0/video3.mp4 /storage/emulated/0/output.mp4: No such file or directory

    The STDOUT I get back from the ProcessBuilder is

    0-31 19:43:20.576: I/FFMPEG(13838): stdErr= ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
    10-31 19:43:20.576: I/FFMPEG(13838):   built on Nov 15 2013 00:50:10 with gcc 4.6 20120106 (prerelease)
    10-31 19:43:20.576: I/FFMPEG(13838):   configuration: --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --enable-small --prefix=/data/data/info.guardianproject.ffmpeg/app_opt --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk//toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk//platforms/android-3/arch-arm --extra-cflags='-I../x264 -mfloat-abi=softfp -mfpu=neon' --extra-ldflags=-L../x264 --enable-version3 --enable-gpl --disable-doc --enable-yasm --enable-decoders --enable-encoders --enable-muxers --enable-demuxers --enable-parsers --enable-protocols --enable-filters --enable-avresample --enable-libfreetype --disable-indevs --enable-indev=lavfi --disable-outdevs --enable-hwaccels --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib --enable-muxer=md5
    10-31 19:43:20.576: I/FFMPEG(13838):   libavutil      51. 54.100 / 51. 54.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavcodec     54. 23.100 / 54. 23.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavformat    54.  6.100 / 54.  6.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavdevice    54.  0.100 / 54.  0.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavfilter     2. 77.100 /  2. 77.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libswscale      2.  1.100 /  2.  1.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libswresample   0. 15.100 /  0. 15.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libpostproc    52.  0.100 / 52.  0.100
    10-31 19:43:20.576: I/FFMPEG(13838): ffmpeg - i /storage/emulated/0/video3.mp4 /storage/emulated/0/output.mp4: No such file or directory

    Please keep in mind that the video file do exist on my device in that exact directory and I also have read permissions in my AndroidManifest.xml

    Please help !!!!