
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
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 (...) -
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 (...)
Sur d’autres sites (6404)
-
Evolution #4034 (Fermé) : Filtre ucfirst
28 septembre 2018, par cedric -A priori pas assez exhaustif pour mettre ça dans le core car il y a trop de cas particuliers dans les différents langages, et ça suppose aussi de gérer les cas où le texte commence par une balise html et pas un caractère… Donc un simple (#TEXTE ne marcherait pas :(
Et j’aurais tendance à me reposer sur le filtre majuscule du coup :
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/filtres.php#L1103Mais peut-être plus simplement faire ça en CSS
https://developer.mozilla.org/fr/docs/Web/CSS/::first-letterBref ça peut marcher en contexte de langue pas trop compliquée. A faire en plugin quelque part ?
Mais du coup je ferme pour le core -
Are there people interested in converting ffmpeg source to Go ?
30 septembre 2018, par No OneAfter seeing that Go compiler have been converted from C to Go I thought same for ffmpeg ? Don’t want to go deep into reasons as I think they are obvious. It was very hard to be so close to the have rich library as ffmpeg in other language. It was even hard to make bindings for that scale of library. I’m not enough advanced to start something like this myself, so is there anybody else interested in this ? If yes then where this question worth to be addressed, so people interested in this may have discussion ?
(Seems not enough obvious so adding some details.)
For applications which use large amount of commands with different complexity it is hard to read the code as it’s not actually a code. Instead, it’s commands which you will need to understand by reading docs from ffmpeg’s docs page. I had used ffmpeg before in Nodejs and there was lots of logic of manipulating command string. Also sometimes in windows it was ending with cmd limitations error. When you are working with some language it is nice to see whole logic in that language. So you know go ? than you know everything that is happening with this code without even going off from code and reading docs of another application.
There may be some benefits from executing stuff in goroutines so you can handle concurrency in the way you want not in the way it is implemented in ffmpeg.
Build faster with Go.
Less code.
Possibility to split code into smaller packages.
Also if you are familiar why community converted compiler from C to Go than I think some reasons will fit too.
-
Segment Broadcast WAVE file with FFMPEG
4 octobre 2018, par yekootmadaI have a Broadcast WAV file that is duration 4 hours with a timecode track starting at 00:00:00 and ending at 04:00:00 (obviously).
I need to extract a section of the file, for example from 01:45:00 to 03:55:00 whilst maintaining the original timecode data for that section of the file.
When i run this FFMPEG script, I get the correction section of the file in "out.wav", however the start timecode of the file is always 00:00:00, and not 01:45:00 as you would expect.
Here is my current code :
ffmpeg -ss 01:45:00 -i in.wav -to 03:55:00 -c copy -write_bext 1 out.wav
How do you tell ffmpeg to take the timecode data from the section of the file and not copy it from the beginning ?
Thanks a lot, hope that is clear.