Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (104)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7044)

  • Cocoa pods did not found compatible version while doing pod install using ffmpeg-kit

    3 septembre 2022, par Pascal Musa

    I’m trying to pod install in react-native using an m1 MacBook Air . First I used Ffmpeg for react -native is superseded. So I use react-native fffmpeg- kit bun when trying to run pod install the terminal tells me that cocoa pods could not find compatible versions for pod mobile-ffmpeg. enter image description here

    


  • Add watermark text on mkv video using ffmpeg on windows version

    27 mars 2018, par Movie now

    I want to put a text watermark on my mkv video using ffmpeg which appears almost 3 times for a short period of time in the whole video.

    The code that i am using :

    ffmpeg
     -i Kaalakaandi.mkv
     -map 0
     -vf "drawtext=enable='between(t,600,660)':fontsize=20: \

    fontfile=C:\Windows\Fonts\arial.ttf:
     text='For More Visit Movienow.me':
     x=w-tw-10:
     y=h-th-10" -c:
     v libx264 output.mkv

    But I am getting this error :

    At least one output must be specified

  • ffmpeg opening video file at lower bitrate

    23 février 2018, par Xeno Boss

    I have a php page which runs ffmpeg from shell with the exec() function as follows ffmpeg -i rtsp://address:port/stream -b:v 512k output.mp4 and since many people could visit the page at once it could fire up many ffmpeg processes for different rtsp streams simultaneously which will eat up my bandwidth.
    Is there some way for me to reduce the bitrate at which the streams are opened ?

    Note : I assumed the bitrate is the most effective factor for reducing bandwidth, please correct me if you have any better suggestions.