
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (49)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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, parPar 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 (...)
Sur d’autres sites (6010)
-
FFMPEG - How do I make a video stop scaling
7 septembre 2020, par JunctionNinjaI have a few videos which I merged and they are in a .mkv format, the output is MP4. Some of them are different resolutions and therefore the smaller ones upscale. How would I stop this ?


I have tried to make it .mkv as the output and I still get the same error.
I don't know how to fix this, here's my ffmpeg.bat file.


ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4



This doesn't work for me like said above with it randomly scaling.
Mainly need a fix to stop it scaling at all.


-
FFmpeg4Android how to stop processing ?
18 mai 2017, par widesteppeI have been successfully setup and starting ffmpeg4android as described here http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html and all goes fine. But what if I want to stop processing before it will be finished. I call fExit(Context context) method from LoadJNI class and nothing happens. Does someone know how correctly stop ffmpeg4android processing ?
-
how to stop a function from a button in tkinter
11 mars 2020, par Cb9867I am trying to record audio from microphone in python with the help of ffmpeg.
By using this i am able to record voice but how can i stop this function by clicking of a button.
to stop this now i am terminating the IDLE forcefully.
import os
import subprocess
import tkinter as tk
from tkinter import *
root = Tk()
os.chdir('C://Users/ravir/desktop/')
def recording_voice():
global p
p=subprocess.Popen('ffmpeg -f dshow -i audio="Microphone (2- High Definition Audio Device)" sample.mp3' )
def stop_rec(): # ho to stop this ???
p.terminate()
rec_btn = Button(text='Start Recording', width=20, command=recording_voice)
rec_btn.pack()
stop_btn = Button(text='Stop Recording', width=20, command=stop_rec)
stop_btn.pack()
root.mainloop()