
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (84)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (6506)
-
Anomalie #4510 (Nouveau) : Notice à l’inscription d’un auteur
18 juin 2020Bonjour,
Je suis tombé sur une erreur php à l’inscription depuis le site public d’un auteur spip.php ?page=identifiants&focus=nom_inscription&mode=1comite (écran qui indique : Votre nouvel identifiant vient de vous être envoyé par email.)
Notice : unserialize() : Error at offset 0 of 7 bytes in \ecrire\inc\session.php on line 482Call Stack
- Time Memory Function Location
1 0.0001 414888 main( ) ...\spip.php:0
2 0.0251 750904 include( ’C :\wwwrootDev_mutualisation\spip33git.localhost\ecrire\public.php’ ) ...\spip.php:20
3 0.0283 756744 traiter_formulaires_dynamiques( ) ...\public.php:105
4 0.1320 1044864 formulaires_inscription_traiter_dist( ) ...\aiguiller.php:245
5 0.1683 1045296 action_inscrire_auteur_dist( ) ...\inscription.php:125
6 0.1688 1045832 inscription_nouveau( ) ...\inscrire_auteur.php:75
7 0.2175 1302752 auteur_modifier( ) ...\inscrire_auteur.php:175
8 0.8298 1503848 actualiser_sessions( ) ...\editer_auteur.php:207
9 0.8298 1503848 unserialize ( ) ...\session.php:482
Teste en SPIP 3.3 git
- Time Memory Function Location
-
Can i ship a commercial product with opencv_ffmpeg.dll, or is that a breach of the license ? [closed]
6 juin 2020, par antiWe are developing an application that uses opencv to load video files. This will be commercially available.



In the current (as yet unreleased) version, I have added the
opencv_ffmpeg410_64.dll
file to the application build directory, as it is needed to load video files.


However, reading online, I cannot track down a clear idea of whether or not I can legally ship with this dll.



A question on opencv answers says yes :



https://answers.opencv.org/question/28202/opencv_ffmpegdll-license/



But another says not :






The FFmpeg license page seems to focus on using the source code, and i cannot get a clear idea of the situation when using only the single dll bundled with opencv.



Can i legally ship an application with the opencv FFmpeg dll file ? Or should I use another video backend ?


-
Animated line chart with pandas, matplotlib and ffmpeg
10 avril 2020, par Mark KIn producing an animated line chart, I have below data and codes.



But when the chart produced, it shows no line. What did I do wrong ?



Thank you.



import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.animation as animation

title = 'Heroin Overdoses'

data = {'Year' : ["1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016"], 
'Heroin Overdoses' : [280,443,413,486,475,148,197,170,448,103,137,160,483,356,352,300,466,278]}
overdose = pd.DataFrame(data)

Writer = animation.writers['ffmpeg']
writer = Writer(fps=20, metadata=dict(artist='Me'), bitrate=1800)

fig = plt.figure(figsize=(10,6))
plt.xlim(1999, 2016)
plt.ylim(np.min(overdose)[0], np.max(overdose)[0])
plt.xlabel('Year',fontsize=20)
plt.ylabel(title,fontsize=20)
plt.title('Heroin Overdoses per Year',fontsize=20)

def animate(i):
 data = overdose.iloc[:int(i+1)] #select data range
 p = sns.lineplot(x=data.index, y=data[title], data=data, color="r")
 p.tick_params(labelsize=17)
 plt.setp(p.lines,linewidth=7)

ani = matplotlib.animation.FuncAnimation(fig, animate, frames=17, repeat=True)

ani.save('C:\\folder\\line chart.mp4', writer=writer)