Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (72)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • 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

Sur d’autres sites (7241)

  • FFmpeg-php installation on cpanel server with CentOS7

    31 août 2020, par Mel

    I installed ffmpeg via below commands but unable to install FFmpeg-php on cpanel server with CentOS7.

    


    Checked articles and found very old version. Please anyone can assist with new FFmpeg-php version and installation steps.

    


    rpm —import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro

    


    rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm

    


    yum install ffmpeg ffmpeg-devel -y

    


    Regards,

    


    Mel

    


  • Downloading ts stream with #EXT-X-DISCONTINUITY-SEQUENCE [ffmpeg]

    29 juin 2018, par MiGu3X

    So I’m using ffmpeg to download streams from the internet but I’m facing a problem with one of them and is that, every once in a while, in the middle of the stream, it goes to some kind of "break" and this #EXT-X-DISCONTINUITY-SEQUENCE tag appears on the .m3u8 files I start to download. I start getting "Non monotuonous DTS" errors on the console and the audio and video start to desync, eventually, I will play the stream once downloaded and it won’t work.

    Is there any way to download with ffmpeg this kind of streams and in some way "skip" the m3u8 files which have this tag or maybe correctly parse them to the video ?

    Hope someone could help me.

  • FFmpeg android execute

    17 septembre 2019, par Eftekhari

    On windows I could cut a video with below code with ffmpeg.exe

    Can’t use ffmpeg in android.
    I used gradle to grab ffmpeg in my app.

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'
    }

    I have these lines in my method

    VideoIn = getInternalDirectoryPath() + "/Download/Ab.mp4";
    VideoOut = getInternalDirectoryPath() + "/Download/Ab1.mp4";

    try {
    ffmpeg.execute("ffmpeg -i " + VideoIn + " -ss 00:00:03 -c:v libx264 -crf 17 -t 00:00:5 " + VideoOut + " -y",null);
    }
    catch (FFmpegCommandAlreadyRunningException e) {
    e.printStackTrace();
    }

    Shows this error : Error running exec(). Command : [/data/data/com.videoeditor.myname.myapp/files/ffmpeg, ffmpeg, -i, /storage/emulated/0/Download/Ab.mp4, -ss, 00:00:03, -c:v, libx264, -crf, 17, -t, 00:00:5, /storage/emulated/0/Download/Ab1.mp4, -y] Working Directory : null Environment : null

    What’s wrong with this method ? Thanks for your help