
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (13893)
-
lavu/timer.h : add Linux Perf API support
2 septembre 2017, par Clément Bœschlavu/timer.h : add Linux Perf API support
Refer to "checkasm : use perf API on Linux ARM*" commit for the
rationale.The implementation is somehow duplicated with checkasm, but so is the
current usage of AV_READ_TIME(). Until these implementations and
heuristics are made consistent, I don't see a way of sharing that code.Note : when using libavutil/timer.h, it is now important to include
before any other include due to the _GNU_SOURCE requirement. -
FFMPEG : Does ffmpeg 2.1 support HEVC streaming
21 janvier 2014, par samFFMPEG version 2.1 has HEVC decoder integrated with it. However, i'm unable to get any information regarding streaming for HEVC. My requirement is that, a server is sending an
elementary stream
, that is an hevc encoded .bin file, and the decoder at the client side which is integrated in ffmpeg should decode it and render it using FFPLAY.So my question is, In general, can the server stream the bin file(elementary stream, this may not be specific to hevc, it may be even h264 data in this elementary stream) as-is in HTTP mode ?
Second, Does ffmpeg 2.1 provide HEVC streaming support (server sending bin file and client decoding and rendering using ffplay) ?
-
running ffmpeg on windows through python causes error "av_interleaved_write_frame() : Invalid argument"
10 juin 2016, par SwarageThe following code is the python script :
import subprocess as sp
FFMPEG_BIN = "ffmpeg.exe"
fullPath = 'test.mp4'
command = [ FFMPEG_BIN,
'-i', fullPath,
'-f', 'image2pipe',
'-vcodec', 'rawvideo', '-']
pipe = sp.Popen(command, stdout = sp.PIPE, bufsize=10**8)What happens is that when I try to run it, I run into a very specific error titled
"av_interleaved_write_frame(): Invalid argument"
and"Error writing trailer of pipe:: Invalid argument."
Some useful information is that I am on windows, I’m running python 2.7.1 (which I can’t change as it is a requirement), and the version of ffmpeg I’m using is "ffmpeg-20160610-git-0a9e781-win64-static." I know somewhat that the reason for this is because the pipe is incorrect, but I’m not entirely sure how to fix it.