
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (77)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (10920)
-
FFmpeg save HLS stream to MP4 audio out of sync
5 octobre 2017, par AlessandroI’m trying to save an HLS stream to an MP4 on Android.
First tried this command
"-y -i " + url + " -to " + duration + " " + filePath
but video quality result is very very low...
Then someone suggested to try this command
"-y -i " + url + " -c copy -bsf:a aac_adtstoasc -to " + duration + " " + filePath
and quality is very high but audio is many seconds out of sync.
Any idea on how to get audio in sync and good output quality ?
-
Save metadata while converting video to images FFmpeg
17 février 2020, par e480582When I convert a video to its constituent images (
ffmpeg -i video.MOV img1%03d.png
), ffmpeg drops all the metadata. How would I save the metadata while converting ? Is there any way to have it also increment the timestamp for each frame ? -
Can't save metadata when convert video files using python ffmpeg
24 novembre 2018, par Oliver KingI tried to us ffmpy library to convert .MOV files into .MP4.
Converting works well, but I can’t save metadata like title and artist.ff = ffmpy.FFmpeg(
inputs={'input.mov': None},
outputs={'output.mp4': None},
global_options=[
'-metadata name=james',
'-metadata artist=Beauty and Beast'
]
)
ff.run()