Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13853)

  • How to run FFmpeg command in Qprocess to make it work ?

    18 août 2024, par NintySwinty

    I have problem with QProcess. I added FFmpeg and command to Qt process. When I run this and I don't see any changes in folder where should be files .mkv. Somebody said me to add "\n" to the but this don't help. ( I do it on macOS Catalina )

    


    void MainWindow::Recording(){

    qDebug() << "Nagrywam!";

    Qrec.setProcessChannelMode(QProcess::MergedChannels);
    Qrec.setProgram("/Users/nintyswinty/Desktop/Dev/Qt/build-PlazaPCO-Desktop_Qt_5_15_1_clang_64bit-Debug/ffmpeg");
    Qrec.setArguments({"-framerate", "30", "-f", "avfoundation", "-i", "1", "-f", "avfoundation", "-framerate", "30", "-i", "0", "-c:v", "libx264", "-crf", "0", "-preset", "ultrafast", "~/Desktop/PlazaPCO/" + QString::fromStdString(date) + ".mkv\n"});
    Qrec.start();
    Qrec.waitForFinished();

    qDebug() << "Koniec - nagrywam";

}```


    


  • h264 restream works when i have no audio in ffserver conf but does not work when i try to add audio

    27 février 2014, par Dnaso

    I am trying to restream an h264 video stream from a camera. All works well when I have NoAudio in my conf file. However when i add audio, even the video stream does not work. Has anyone ever encountered thiss ?

    ffmpeg -i rtsp ://*** -s 320x240 -vcodec copy -acodec copy -s 320x240 -ab 64k http://*:8091/feed1.ffm

  • FFMPEG Segment Threads Equivalent Option

    24 août 2018, par Bruno Andrade

    I was downloading video from a hls m3u8 stream using the ffmpeg command in php :

    exec('ffmpeg -hide_banner -loglevel verbose -n -i https://example.com/playlist.m3u8 -acodec copy -bsf:a aac_adtstoasc -vcodec copy file.mp4 1> log.txt  2>&1', $output, $var);

    But I was having problems downloading speed and the problem was not the internet.

    So I installed and used the livestreamer.io OR streamlink.github.io/ and also slowed down the download.

    So I made use of the hls-segment-threads=5 option according to the API document :

    The size of the thread pool used to download segments.

    This solved the problem, is there any equivalent option in the FFMPEG ?
    Or have something I can do with PHP + FFMPEG to get this result that this hls-segment-threads option provides ?

    Most shared servers come with FFMPEG installed but the same does not fit with livestreamer or streamlink so I need a solution that works for everyone.

    *I do not understand python do not know what this option exactly does