
Recherche avancée
Autres articles (50)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (5420)
-
How to properly open libvpx for encoding in via avcodec_open2() ?
10 juin 2014, par EdisonWith a valid AVCodec and a valid AVContext, when calling avcodec_open2() EINVAL (-22, Invalid arguments) is returned, it turns out the EINVAL is triggered via
ret = avctx->codec->init(avctx);
if (ret < 0) {
goto free_and_end;
}inside avcodec_open2().
The same code that I have right now can open mpeg4 and h264 just fine.
Are there any special option parameters that has to be set (e.g. for h263, image size has to be multiples of certain numbers) to open libvpx codec ?
-
Separate Audio and Video in android
13 février 2014, par ManojI am beginner to Android application development,The aim of my project is to separate a audio and video from video file. after surfing in internet i came to know that, using FFmpeg we can do it.
ffmpeg -i input.mkv # show stream numbers and formats
ffmpeg -i input.mkv -c copy audio.m4a # AAC
ffmpeg -i input.mkv -c copy audio.mp3 # MP3
ffmpeg -i input.mkv -c copy audio.ac3 # AC3
ffmpeg -i input.mkv -an -c copy video.mkv
ffmpeg -i input.mkv -map 0:1 -c copy audio.m4a # stream 1separated video file wouldn't contain any audio it must be contain only video type.
whether this option too possible in ffmpeg ?
is any other alternative option there ?. -
what is the packet size unit of ffprobe(similar to ffmpeg) ?
26 août 2014, par Juneyoung OhI am developing thumbnail extractor with ff- series(means ffmpeg, ffplay, ffprobe).
I need to know the location of frames, so I use a command like below which I found another posting in stackoverflow.
ffprobe -show_frames -select_streams v -print_format json=c=1 0001.wmv
Actually it works nice and makes a file with lots of information of packet.
The output file like below.
"frames": [
{ "media_type": "video", "key_frame": 1, "pkt_pts": 900000, "pkt_pts_time": "10.000000", "pkt_dts": 900000, "pkt_dts_time": "10.000000", "pkt_duration": 3003, "pkt_duration_time": "0.033367", "pkt_pos": "453", "pkt_size": "9744", "width": 720, "height": 480, "pix_fmt": "yuv420p", "sample_aspect_ratio": "8:9", "pict_type": "I", "coded_picture_number": 0, "display_picture_number": 0, "interlaced_frame": 0, "top_field_first": 0, "repeat_pict": 0 },...There is a column named "pkt_size", which I assume that size of packet.
It displays some numbers in, but no information of units.
I wonder that unit is ’byte’ or ’bit’.
If somebody has some information of this, Tell me.
Thanks.