Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (59)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (8845)

  • Live Video Broadcasting android

    16 juillet 2015, par AndroidFan

    I am developing an android application that will do live video broadcasting from mobile camera to Nimble streaming server. I have done google and find this link

    http://www.walking-productions.com/notslop/2013/01/16/android-live-streaming-courtesy-of-javacv-and-ffmpeg/comment-page-2/#comment-428898

    Actually i have downloaded project and successfully imported it on my eclipse , but when i am changing url from

    rtmp://live:live@128.122.151.108:1935/live/test.flv

    to

    rtmp://192.168.1.51:1935/magnify/sudeep

    The camera started but it does not do live streaming. On seeing it on my log cat output i got this following error :

    07-16 13:56:13.314: W/System.err(22490): com.googlecode.javacv.FrameRecorder$Exception: av_interleaved_write_frame() error -32 while writing interleaved audio frame.
    07-16 13:56:13.314: W/System.err(22490): at com.googlecode.javacv.FFmpegFrameRecorder.record(FFmpegFrameRecorder.java:747)

    Actually i am using Nimble streaming server as My server. Actually i got stuck it into from last 3 days.

  • ffmpeg is not working on live server in PHP

    11 mai 2017, par thakur

    I have downloaded the ffmpeg package and set the path of usr/bin of ffmpeg .By this ffmpeg is running on the localhost correctly as shell_exec('ffmpeg -versoin');, but when I run the same code on live server ffmpeg is not working.

    I have also set the correct directory path for live server. The problem is all other commands is running correctly on live server except ffmpeg.

  • live preview of video processing in android app

    13 février 2018, par Ashish Mathur

    I’m building a video editing app and currently I am using ffmpeg for encoding and decoding process (my app can easily do the tasks where live preview is not required like reverse a video or apply filters like B/W or pick specific frames in video and some audio tasks etc)
    but Problem is that if user want to adjust the brightness or contrast of the video they require live preview of the video but that is not supported by ffmpeg ffmpeg requires to encode the video before the preview
    so my question is how can I achieve live preview with ffmpeg

    Thanks in advance (sorry for grammar related problems in the question)