
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (60)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (7132)
-
avformat/mpegtsenc : Changed Video PES packet length to 0.
12 avril 2014, par Graham Bookeravformat/mpegtsenc : Changed Video PES packet length to 0.
The rational for this is another issue that plex has exposed. When it is
conducting a transcode of video to HLS for streaming, my father noticed
artifacts when played on his GoogleTV (NSZ-GT1). He sent me a test file
and I reproduced it on my device of the same model. It is important to
note that the artifacts were not present when streaming to VLC or QuickTime
Player. I copied the command-line that plex used, and conducted all of the
following tests using FFmpeg git.Transcode to HLS : artifacts on playback
Transcode to TS : playback is fine
Cat HLS segments into a single TS : playback is fine
Segment single TS file to segments : artifacts on playback
Segment single TS file to segments using Apple’s HLS segmenter : playback is
fineAt this point I carefully examined the differences between Apple’s HLS
segmenter output and FFmpeg’s. Among the considerable differences, I
noticed that the video PES packets always had a 0 length. So I continued :Transcode to HLS using FFmpeg with 0 length PES packets : playback is fine.
Segment single TS to segments with 0 length PES packets : playback is fine.All failures mentioned are only on the GTV since it is the only player on
which I could reproduce artifacts. I only tested the GTV, VLC, and
QuickTime Player though, so my test case is limited. I do not know if
other players exhibit this issue.Since it was useful last time, I have uploaded the test file as
hls_pes_packet_length.m4v along with its associated txt file which contains
the transcode command-line that was used.Reviewed-by : Kieran Kunhya <kierank@obe.tv>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
video playing with paperclip ffmpeg
30 mars 2014, par Ameya SavaleI've been having problems playing uploaded videos in my ruby on rails app.
So I am using the
paperclip-ffmpeg gem
to process my videos when uploaded, and I am able to create a thumbnail of the video but I am not able to play the video. When I right click on the video I am able to download and I can play it using the player on my computer but I am not able to play it in my view. Also when I right click on it the options for "play", "skip", etc. are all blocked. Here is my model :class Video < ActiveRecord::Base
has_attached_file :clip, :styles => {
:medium => { :geometry => "640x480", :format => 'flv'},
:thumb => {:geometry => "100x100#", :format => 'jpg', :time => 10}
}, :processors => [:ffmpeg]
do_not_validate_attachment_file_type(:clip)
endAnd here is my view :
<table class="table">
<tr>
<th>Video</th>
<th>Title</th>
<th>Caption</th>
</tr>
<% @video.each do |video| %>
<tr>
<td>
<%= image_tag video.clip.url(:thumb) %>
<%= video_tag video.clip.url(:medium) %>
</td>
<td>
<%= label_tag video.title %>
</td>
<td>
<%= label_tag video.caption %>
</td>
</tr>
<% end %>
</table>I have also tried using the
videojs_rails gem
but I wasn't able to play the video using that either. I would greatly appreciate it if someone could help me out, I've been searching for an answer everywhere but haven't come across one that has worked for me.Thanks in advance
-
implicit declaration of function 'lseek64' is invalid in C99
29 mai 2015, par Jerikc XIONGI have got the following compile error while compiling the FFmpeg-Vitamio.
My OS is Mac OS X 10.10.9
NDK version : android-ndk-r10d
Gcc version :
$gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin14.1.1
Thread model: posixError message :
libavformat/fd.c:59:9: error: implicit declaration of function 'lseek64' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
return lseek64(fd, pos, whence);