
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (109)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
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 -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (11558)
-
run exe on 1and 1 hosted site
28 avril 2014, par Paul LedgerI have a
ffmpeg.exe
file than runs on localhost but this doesn’t work on my web server. As it is 1and1 I can’t installffmpeg
as a extension. All this is supposed to do is create a thumbnail from the video in the same folder.<?php
$output = 'robot.jpg';
$input = 'robot.avi';
$ffmpegpath = "ffmpeg.exe";
if(file_exists($ffmpegpath)){
echo 'found the file <br />';
}
$size = '100x100';
$sec = '1';
$cmd = "ffmpeg.exe -i $input -an -ss $sec -s $size $output";
if(exec(escapeshellcmd($cmd))){
echo 'worked';
}else{
echo 'not worked';
}
?>Is there a way of getting this too work without having full control over the server. The site is hosted on a basic lunix package, this was set up by a friend. So there isn’t much control.
-
How can I play & sync video playback on a webpage for all ? (even a better/more developed streaming method with full media controls)
15 juin 2020, par AtmosI'll start by explaining what I currently use to accomplish this, to better explain my goal



I use ffmpeg to "re-stream" to a streaming service (angelthump). Of which's player I embedded into my website. I run the ffmpeg cmd, which I need to tweak slightly each time to play various media. It's just me either pointing it to a location on my local drive or to a video URL.



Problem being with this is I don't have full media playback control (to pause, resume etc.), and it doesn't allow anyone beyond me & the friend who taught me this method to play a video.





What I am looking for in a new/more refined method :



(I'll explain at the end why I added "refined method")





The Main Goal I Want to Achieve :





A webpage where where visitors can access and view whatever media is playing, in sync with everyone.



And with this synced video, for there to be a simple way for (allowed) users to submit media to play or queue up next. 
And Playback controls for an appointed admin. A more complex preferrable feature in addition to that ; where the submitter of current playing media to also have control.



Some expanded description on the features :



- 

-
Recieve info in a simple way on which media to play :



- 

-
Be able load media by being provided a direct video URL. Or if possible, load it from the submitter's own device.
-
Queueing multiple videos :



Multiple people may add their own videos while another is playing, so instead of waiting for it to end it can hold the URL to play next.




-
-
Proper media playback controls (pause, rewind, resume etc.)



I'd like to be able to have simple controls on the webpage itself to easily pause, seek to a time of the video. Being able to do this without having to go through the complex steps I used to, to achieve this.



If possible, allow the user who submitted the current media playing, access to the media controls only.



(To lock these controls to select users (depending on the video sync method I find suitable) I do realise I may need to figure out seperately how I want to lock this to select users. Either by adding control buttons which only shows up for them. But if I find a method where an embeddable video player like setup with sync capabilitie, I can just leave it up to that.)









The "refined" point expanded :





The friend once provided some bash scripts which could queue videos while ffmpeg is running. So I didn't need to stop/wait for it to finish to start the next vid. And I think he mentioned media controls can be achieved using this same method. 
But if there are better & simpler ways to achieve the overall answer to my topic, I would like to take that route.





There was also mention of webrtc & janus if that helps anyone suggest more methods. I will also try and reach out to others to help implement whatever suggestions I can get.


-
-
Add Filters to Video like Instagram
16 janvier 2017, par G SinghI am coding for an app and need to apply filters to videos like Instagram.
I tried with FFMPEG library, but it doesn’t work well and does not provide all filters.
What I tried so far is,
String commandStr1 = "ffmpeg -y -i /sdcard/vids.mp4 -strict experimental -vf hue=s=0 -vcodec mpeg4 -b 2097152 -s 320x240 -r 30 /sdcard/vid_out.mp4";
String[] complexCommand3 = {"ffmpeg","-y", "-i", "/sdcard/videokit/out1.mp4",
"-i", "/sdcard/videokit/out2.mp4", "-strict", "experimental",
"-filter_complex",
"[0:v]scale=640x480,setsar=1:1[v0];[1:v]scale=640x480,setsar=1:1[v1];[v0][0:a][v1][1:a] concat=n=2:v=1:a=1",
"-ab", "48000", "-ac", "2", "-ar", "22050", "-s", "640x480", "-r", "30", "-vcodec", "mpeg4", "-b", "2097k", "/sdcard/videokit/out3.mp4"};Is there any other open source or paid library to apply filters to videos ? Any kind of help to achieve this functionality will be appreciated.
or How can I make my own video filters ?
Thanks.