Advanced search

Medias (1)

Tag: - Tags -/censure

Other articles (59)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    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 June 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

  • Emballe médias : à quoi cela sert?

    4 February 2011, by

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel; un seul document ne peut être lié à un article dit "média";

On other websites (5081)

  • Unable to Drawtext using FFpeg on Video in Android app

    20 November 2018, by dev_android

    I am trying to use FFmpeg for text overlaying on video using ’ffmpeg-android-java’. The command I using like that:

    command = "ffmpeg -i /storage/emulated/0/GsrVideo/testvideo.mp4 -vf drawtest=\"font=/storage/emulated/0/font/Pacifico.ttf:fontsize=20:fontcolor=red:x=10:y=10:text='hello'\" /storage/emulated/0/GsrVideo/editedVideo.mp4"

    But it is giving error saying - Error initializing filter ’drawtext’ with args ""font=/storage/emulated/0/font/Pacifico.ttf:fontsize=20:fontcolor=red:x=10:y=10:text=’hello’", Error opening filter!

    Please anyone can help me pointing out the problem in the filter.

  • Blu Ray pre-encoding

    29 May 2014, by user1122069

    I am working on authoring many Blu Ray disc images. I was wondering if there was a way to pre-encode video to MPEG-2 so that this process could run unattended overnight and over many days. I have already found that by importing the movie file on a Blu Ray image causes Toast to skip the encoding step.

    Does anyone familiar with FFMPEG and Blu Ray know what command to use? Or suggest another free application. It should be the same as would be ready to import to a disc with remuxixing or multiplexing, etc. I can fine tune it to match the VBR settings on Toast and post the result here also if it works (saves the time to encode).

    I have about 50 1 hour videos to encode.

  • close the running application in vb.net from background

    22 January 2016, by TOM

    i want to stop the running (ffmpeg) process from background . i use the

     process.kill()  

    i wrote the code . but in this process the output file is getting corrupted.

    Dim pProcess() As Process = Process.GetProcesses
     For Each p As Process In pProcess
      If p.ProcessName = "ffmpeg" Then
       p.WaitForExit(1000)
       p.Kill()      
       p.Close()
     End If
    Next

    is there any other method to terminate the process without file being corrupt

    thanks