Recherche avancée

Médias (91)

Autres articles (13)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (3756)

  • Java ProcessBuilder : space within quotation marks

    29 mai 2014, par Zahlii

    I am using ProcessBuilder to run FFMPEG to convert and label some of my MP3-Files.

    Manually using the following in a .bat file works as expected :

    "E:\Dokumente\workspace\MusicBot\ffmpeg\bin\ffmpeg.exe"
       -i "The Glitch Mob - We Can Make The World Stop.mp4"
       -metadata author="The Glitch Mob"
       -metadata title="We Can Make The World Stop"
       -ab 320k "mob.mp3"

    Now what i am trying to achieve using java’s ProcessBuilder

    ProcessBuilder pr = new ProcessBuilder(FFMPEG_PATH,
       "-i", target.getAbsolutePath(),
       "-metadata", "title=\"We Can Make The World Stop\"",
       "-metadata", "author=\"The Glitch Mob\"",
       "-ab", "320k",
       tar.getAbsolutePath());

    results in a [NULL @ 000000000032f680] Unable to find a suitable output format for 'Can'.
    Using title and author without spaces in them works, however.

  • FFMPEG not save logs when converting to audio format

    27 mars 2017, par PUXIII

    The command does not save or even create a file :

    ffmpeg -i "video.mp4" -f mp3 "audio.mp3" -vstats_file "log_file.log"

    And if you convert to a video file, everything normally creates and writes :

    ffmpeg -i "video.mp4" -f mp3 "video.avi" -vstats_file "log_file.log"

    Goal : to pull out the time from the log file and bind it to the process bar.

    There are no problems with video, everything works. But with the sound does not work.

    I tried the command :

    ffmpeg -i "video.mp4" -f mp3 "video.avi" >2 "log_file.txt"
    But there are other problems popping out. Since I run it all from the python using the subprocess

    ffmpegProc = subprocess.Popen(ffmpegCommand, startupinfo=startupinfo, shell=True)
    , I can not kill the running process, because it is started with the attribute shell=True, and only the shell is killed.and only the shell is killed.

  • Android ffmpeg Issue :- : No such file or directory

    22 décembre 2020, par Nirav Dangi

    I am using FFMPEG tool to merge IMAGE & AUDIO files. Its working only in SAMSUNG GALAXY TAB II.
I had tried in many android devices & emulators but unfortunately it had not worked in any of them.

    



    Same issue is posted here also. But Its solutions has not worked for me.

    



    Following is error log of emulator,

    



    02-15 08:46:33.667: D/NIRAV(921): Shell Line : /data/data/org.ffmpeg.android/lib/libffmpeg.so -y -loop 1 -r 1 -i /mnt/sdcard/ffmpeg/img.jpg -i /mnt/sdcard/ffmpeg/myrecord.mp4 -acodec aac -vcodec mpeg4 -s 480x320 -strict experimental -b:a 32k -shortest -f mp4 -r 2 /mnt/sdcard/ffmpeg/out.mp4 
02-15 08:46:33.707: D/NIRAV(921): Shell Line : ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   built on Nov 15 2013 00:50:10 with gcc 4.6 20120106 (prerelease)
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   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
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   libavutil      51. 54.100 / 51. 54.100
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   libavcodec     54. 23.100 / 54. 23.100
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   libavformat    54.  6.100 / 54.  6.100
02-15 08:46:33.717: D/NIRAV(921): Shell Line :   libavdevice    54.  0.100 / 54.  0.100
02-15 08:46:33.727: D/NIRAV(921): Shell Line :   libavfilter     2. 77.100 /  2. 77.100
02-15 08:46:33.727: D/NIRAV(921): Shell Line :   libswscale      2.  1.100 /  2.  1.100
02-15 08:46:33.727: D/NIRAV(921): Shell Line :   libswresample   0. 15.100 /  0. 15.100
02-15 08:46:33.727: D/NIRAV(921): Shell Line :   libpostproc    52.  0.100 / 52.  0.100
02-15 08:46:33.747: D/NIRAV(921): Shell Line : /mnt/sdcard/ffmpeg/img.jpg: No such file or directory
02-15 08:46:33.747: D/NIRAV(921): Exit Value : 1


    



    I had verified the path of img.jpg & myrecord.mp4 files.
I am using android-ndk-r7 to build ffmpeg.