Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (14053)

  • ffmpeg is deleting id3 tags

    25 septembre 2012, par payal

    I'm using below code for converting MP3 files using FFmpeg.

    All id3 tags are deleted in the converted file.

    exec('ffmpeg  -i 01.mp3  -acodec libmp3lame  -ab 128k -map_meta_data 0:0 -ac 1 1.mp3 '))

    What am I doing wrong ? I tried this code as well but same result – I'm getting all id3 tags deleted.

    exec('ffmpeg  -i 01.mp3  -acodec libmp3lame  -ab 128k **-map_metadata 0:0** -ac 1 1.mp3 '))

    here is the ouytput

    plase find the command line output

       ffmpeg version N-44715-g10c00f7-syslint Copyright (c) 2000-2012 the FFmpeg developers
       built on Sep 24 2012 03:18:19 with gcc 4.4.6 (GCC) 20120305 (Red Hat 4.4.6-4)
       configuration: --prefix=/usr/local/cpffmpeg --enable-shared --enable-nonfree --enable-gpl --        enable-pthreads --enable-libopencore-amrnb --enable-decoder=liba52 --

     enable-libopencore-amrwb --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --extra-cflags=-

      I/usr/local/cpffmpeg/include/ --extra-ldflags=-L/usr/local/cpffmpeg/lib --enable-version3 --extra-version=syslint
        libavutil      51. 73.101 / 51. 73.101
        libavcodec     54. 58.100 / 54. 58.100
     libavformat    54. 28.100 / 54. 28.100
     libavdevice    54.  2.101 / 54.  2.101
    libavfilter     3. 17.100 /  3. 17.100
     libswscale      2.  1.101 /  2.  1.101
     libswresample   0. 15.100 /  0. 15.100
     libpostproc    52.  0.100 / 52.  0.100
    [mp3 @ 0x1a76240] max_analyze_duration 5000000 reached at 5015510
    Input #0, mp3, from '/home/xxxxxxx/public_html/xxxx/01.mp3':
    Metadata:
    title           : dheere dheere
    genre           : www.Mp3pk.com
    artist          : www.Mp3pk.com
    album           : AASHIQUI
    Duration: 00:05:28.77, start: 0.000000, bitrate: 146 kb/s
    Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16, 112 kb/s
    Output #0, mp3, to '/home/xxxxxx/public_html/xxxx/1.mp3':
    Metadata:
    TIT2            : dheere dheere
    TCON            : www.Mp3pk.com
    TPE1            : www.Mp3pk.com
    TALB            : AASHIQUI
    TSSE            : Lavf54.28.100
    Stream #0:0: Audio: mp3, 22050 Hz, mono, s16, 16 kb/s
    Stream mapping:
    Stream #0:0 -> #0:0 (mp3 -> libmp3lame)
    Press [q] to stop, [?] for help
    size=     642kB time=00:05:28.75 bitrate=  16.0kbits/s    
    video:0kB audio:642kB subtitle:0 global headers:0kB muxing overhead 0.043491%
  • bash avconv/ffmpeg to recursively batch convert videos to webm

    31 juillet 2014, par user234385

    I have accumulated many years of home movies on my computer. I am moving everything to the cloud, so file size and web compatibility is now desirable. After several months of toying with this problem, reading many postings on stackoverflow and documentation at ffmpeg and libav, I settled on the following bash command :

    find . -type f -name '*.m4v' -exec bash -c 'avconv -i "$0" -c:v libvpx -crf 30 -b:v 2M -c:a libvorbis "${0/%m4v/webm}"' '{}' \;

    My frames per second are sometimes good, and sometimes lousy, all relative to my hardware. Is there anything about the foregoing code that could changed to increase performance without sacrificing quality and file size ?

  • How to tell ffmpeg to loop through all files in directory in order

    16 août 2014, par Andy

    ffmpeg has concat option for this but all streams start working really bad and breaking sound after a day of streaming.

    I tried looking at loops but i couldnt figure out how to execute a loop with ffmpeg command so it transcodes all files in 1 directory

    /lely/ffmpeg -y -re -i /home/ftp/kid1.mp4 -vcodec copy -acodec copy -dts_delta_threshold 1000 -ar 44100 -ab 32k -f flv rtmp ://10.0.0.17:1935/live/kid

    In folder /home/ftp/ there are files kid1, kid2, kid3 - all *.mp4 files

    So basically i would like a loop to change the input to next file every time previous ends.