Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (70)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (9147)

  • Fffmpeg while loop stops before all files are processed

    27 juin 2019, par user1029296

    I have a list of 3k URLs in a text file named "downloadmp3.txt", with the following format :

    url1,filename1
    url2,filename2
    ...
    url3000,filename3000

    I wrote the following code using snippets I found here :

    while read p; do

    a=$( echo $p | cut -d',' -f1 )
    b=$( echo $p | cut -d',' -f2 )

    ffmpeg -nostdin -loglevel quiet -stats -i ${a} ${b}.mp3 &

    done code>

    The issue that I have is that my script downloads around 500 mp3s out of the 3000 (some entirely, some partially) and then just stops. Any advice on what changes to make would be appreciated.

    Thanks !

  • FFMPEG command issue

    18 février 2015, par user3521787

    I am having an issue with FFMPEG. To be exact I’m trying to generate a number of ’meaningful’ thumbnails from a video file.
    I have found this command on the internet :

    ffmpeg -ss 3 -i input.mp4 -vf "select=gt(scene\,0.4)" -frames:v 5 -vsync vfr fps=fps=1/600 out%02d.jpg

    Sadly it doesn’t work for me, as I’m getting :

    [NULL @ 0x86c2420] Unable to find a suitable output format for 'fps=fps=1/600'
    fps=fps=1/600: Invalid argument

    I have tried including "fps=fps=1/600" inside -vf, which resulted in only one picture being generated. What am I doing wrong ?

    EDIT :

    This is an example of a full output :

    $ ffmpeg -ss 3 -i video.ogg -vf "select=gt(scene\,0.4)" -frames:v 5 -vsync vfr fps=fps=1/600 out%02d.jpg
    ffmpeg version 2.5.3 Copyright (c) 2000-2015 the FFmpeg developers
     built on Jan 10 2015 23:26:13 with gcc 4.9.2 (GCC) 20141224 (prerelease)
     configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-avisynth --enable-avresample --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
     libavutil      54. 15.100 / 54. 15.100
     libavcodec     56. 13.100 / 56. 13.100
     libavformat    56. 15.102 / 56. 15.102
     libavdevice    56.  3.100 / 56.  3.100
     libavfilter     5.  2.103 /  5.  2.103
     libavresample   2.  1.  0 /  2.  1.  0
     libswscale      3.  1.101 /  3.  1.101
     libswresample   1.  1.100 /  1.  1.100
     libpostproc    53.  3.100 / 53.  3.100
    [theora @ 0x9b59140] 7 bits left in packet 82
    [ogg @ 0x9b586e0] Broken file, keyframe not correctly marked.
       Last message repeated 2 times
    Input #0, ogg, from 'video.ogg':
     Duration: 00:09:56.46, start: 0.000000, bitrate: 2237 kb/s
       Stream #0:0: Video: theora, yuv420p, 854x480, 24 tbr, 24 tbn, 24 tbc
       Stream #0:1: Audio: vorbis, 48000 Hz, stereo, fltp, 192 kb/s
    [NULL @ 0x9b97660] Unable to find a suitable output format for 'fps=fps=1/600'
    fps=fps=1/600: Invalid argument
  • ffmpeg rtsp to rtmp motion pipeline

    10 septembre 2021, par Ali Gökkaya

    I have a stream I got from rtsp and I want to convert it to rtmp broadcast using ffmpeg.

    


    1- read stream from rtsp
2- fps = 3, size = 848x480
3- When it detects motion, it will not encode when there is no motion to broadcast rtmp

    


    in this respect

    


    select = 'gt (scene \, 0.004)'


    


    and

    


    I used mpdecimate but I could not get the result I wanted. Can you help me with this issue ?