
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (36)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (5714)
-
Capture cctv camera with iphone application using IP
22 septembre 2021, par BittuI want to develop a cctv camera app and I don't know what steps I need to take.
i have the data below for connecting cctv camera :



- 

- Ip address
- port ID
- user name
- password











i checked live555 and RTMPStreamPublisher demo from here, but i don't know where I should start. i also read that i should use the ffmpeg framework.



What I want is an app similar to kView on itunes. This app is able to stream a cctv camera feed with the above configuration detials



Does anyone know what direction I need to go in ? Is there a demo or open-source app that accomplishes this ?


-
Cannot play DAV to MP4 converted H.265 video file with hvc1 tag in iPhone
21 août 2023, par Venkata SubbaraoI have converted H.265 video file in dav format from Dahua camera using following commands. Both of the generated mp4 video files are NOT playable in iPhone default player. However, the generated video files are playable in VLC player.


ffmpeg -y -i hevc.dav -c:v copy -tag:v hvc1 hevc.mp4
ffmpeg -y -i hevc.dav -tag:v hvc1 -c:v copy -f mp4 -movflags frag_keyframe+empty_moov hevc.mp4



Generated video file plays only if I re-encode the video using following command.


ffmpeg -y -i hevc.dav -c:v libx265 -tag:v hvc1 hevc.mp4



Re-encoding is time consuming. So, please let me know, if I am missing any flags in the above commands.


-
HLS Content Throwing 403 Errors on iPhone Indeterminately [closed]
10 août 2023, par Shishir JakatiI am facing an issue with video content that I have converted to HLS playlist content (using ffmpeg) added to an S3 bucket that is shared through a Cloudfront Distribution. My scenario is the following :


I have a bucket called
bucket-a
, with a "folder"video-1
which contains the following files :

- 

- output.m3u8
- output0.ts
...
- output15.ts
- audio/

- 

- audio.aac




- image.jpg














All items in
bucket-a
are blocked from public access through S3. Content is only vended through a Cloudfront distribution which has originbucket-a
. I am able to accesshttps://<distro>.cloudfront.net/path/output.m3u8</distro>
on a desktop browser without fail, and no errors thrown. But the file output.m3u8 and all .ts files are not available on iPhone mobile browsers. The part that is peculiar is that this is not true for all playlist content inbucket-a
. For example, I have a "folder"video-2
withinbucket-a
that has the same file structure asvideo-1
that is completely accessible through all mobile browsers.

Here is an example master playlist error : https://dbs3s11vyxuw0.cloudfront.net/bottle-promo/script_four/output.m3u8


Even more head-scratching is that I am able to access all the playlists that are within this playlist.


What I've tried :


- 

- Initially, I believed the issue to be due to the way the video was transcoding so I standardized the video transcoding.
- Then I believed the issue to be due to CloudFront permissions, though those seem to be fine.
- I've validated my stream here : https://ott.dolby.com/OnDelKits_dev/StreamValidator/Start_Here.html








Not sure which way to turn.