
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 (34)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (5711)
-
Adding Mediainfo into Videos
13 août 2019, par yrcjeI’m trying to add/preserve these datas while recording/editing .TS footage, (datas will be shown below), I’m using VideoReDo TVSuite5 to edit these .ts/.tp files without losing these datas, as from what I know, VideoReDo software automatically removes these miscellaneous data from the stream, I’m trying to preserve it while editing, or adding it back after editing, is there any way to do this ?
Not much as I can’t really find any documentation on Menu info editing online. From what I can see so far, these data can only be obtained if the source itself is from a Native Internet TV Box. But is there any other way around it ?
Menu #1
ID : 32 (0x20)
Menu ID : 2 (0x2)
Duration : 1 h 25 min
List : 33 (0x21) (MPEG Video, Korean) / 36 (0x24) (AC-3, Korean)The Mediainfo is inside the pastebin link.
MediainfoNo error message defined a there is no known way to add these.
-
FFMpeg is writing a matplotlib animation with diminishing quality
3 mars 2017, par Bryan StaffordI am trying to create a bunch of animations that follow the paths National Hockey League teams travel during the current season. Currently, my animation looks like this.
As you can see, the animation begins decently sharp but within 2 seconds the quality bottoms out and everything is grainy.
The relevant code is this :
ani = animation.FuncAnimation(fig, update, frames=len(all_x + 20),
interval=75, repeat=False)
filepath = map_team + '.mp4'
ani.save(filepath, writer='ffmpeg', fps=30)
plt.tight_layout()
plt.show()I have chosen FFMpeg as my writer because I hope to put about 30 graphics online and the MP4 format keeps each file around 1.5MB. If there’s a way to keep the graphics sharp, with low file sizes, and able to be uploaded onto Imgur, I would love to do that with my project.
Thanks.
-
How to install ffmpeg and an app together on a Mac ?
30 juin 2016, par PatrickI have an electron app built and packaged for macOS in a
.app
file. The app requires ffmpeg to be installed on the end-user’s computer to be used.Currently, I’ve had to manually install ffmpeg on each end-user’s computer to run the app.
I want to distribute the app online with an easy installer for both ffmpeg and the app. I’ve seen
.dmg
files which allows you to drag the.app
into the applications folder easily, but the ffmpeg dependency is still absent in the installation process.How can I install ffmpeg and the app together on a mac ?
Perhaps including the ffmpeg build in the
.app
content is a solution as well.
This may not be possible though because a relevant question mentions there are only abstractions of the ffmpeg CLI instead of something that can directly use ffmpeg.