Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (11664)

  • avformat/hlsenc : fix handling of delete_segments when %v is present

    11 avril 2018, par Bela Bodecs
    avformat/hlsenc : fix handling of delete_segments when %v is present
    

    When var_stream_map option is used, %v must appear either in segment
    name template or in the directory path. This latter case currently is
    not handled and delete_segments flag of hls_flags is broken now. This
    patch fix this. The root cause of the bug was that HLSSegment struct
    only stores the final filename part, but not the final directory path.
    Most of the cases, final path info is unneded, It only necessary when
    you want to delete old segments (e.g in case of live streaming).
    Without variant streams it was unnecessary to store the final directory
    path, because all segment were stored into the same directory. But
    introducing %v in directory names either require to store the final
    directory path into HLSSegment or associate segments with their variant
    streams to be able deleting them later. I have choosen the second
    solution and introduced a variant index data member into the segment
    struct.

    Signed-off-by : Bela Bodecs <bodecsb@vivanet.hu>
    Signed-off-by : Steven Liu <lq@onvideo.cn>

    • [DH] libavformat/hlsenc.c
  • Concatenating image with video for Freeze frame effect

    12 mai 2015, par Code_Ed_Student

    I am currently trying to achieve with ffmepg a freeze frame effect. This is something easy to do with adobe after effects shown here. However I would like to achieve a freeze frame effect(of 5 seconds duration) followed by the 15 second video for the final output video. This should amount to a final duration of 20 seconds. However with the settings below, I am getting a still image with the video following but it does not show a "freeze frame effect". How can I achieve a "freeze frame effect" in ffmpeg ?

    //create image

    ffmpeg -i "/media/test/test.mp4" -ss 00:00:00.023222 -vframes 1 "/media/test/test.png"

    //create freeze image effect

    ffmpeg -i "/media/test/test.mp4" -loop 1 -i "/media/test/test.jpg" -an \
    -filter_complex "[1:v]trim=start=0:end=5[ol];[0:v]setpts=[nv];[nv][ol]overlay=eof_action=pass[final]" \
    -map '[final]' -c:a aac -strict experimental -c:v libx264 -q 1 "/media/test/test_effect.mp4"
  • Flutter ffmpeg : Video merger not working

    17 septembre 2021, par Madhusri J

    I have been trying to merge two videofiles using ffmpeg in flutter but a single videofile is merging two times and the sound of video is not working

    &#xA;

    This is my code

    &#xA;

     final appDir = await getExternalStorageDirectory();&#xA; String rawDocumentPath = appDir!.path;&#xA; final outputPath = &#x27;$rawDocumentPath/videomerge.mp4&#x27;;&#xA;&#xA; final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();&#xA;&#xA; String commandToExecute = &#x27;-y -i ${VideoFiles[0].path} -i ${VideoFiles[1].path} &#xA;  -filter_complex \&#x27;[0:v][0:v]concat=n=2:v=1:a=0[out]\&#x27; -map \&#x27;[out]\&#x27; $outputPath&#x27;;&#xA;&#xA; _flutterFFmpeg.execute(commandToExecute).then((rc) => print("FFmpeg process exited with &#xA; rc $rc"));&#xA;

    &#xA;

    Any help would be greatly appreciated :)

    &#xA;